AndySAnker commited on
Commit
190c89f
1 Parent(s): 6fd242d

Delete setup.py

Browse files
Files changed (1) hide show
  1. setup.py +0 -43
setup.py DELETED
@@ -1,43 +0,0 @@
1
- from setuptools import setup
2
-
3
- with open("README.md", "r") as fh:
4
- long_description = fh.read()
5
-
6
- setup(
7
- name='POMFinder',
8
- version='1.0.1',
9
- author='Andy S. Anker',
10
- author_email='andy@chem.ku.dk',
11
- url='https://github.com/AndyNano/POMFinder',
12
- description='Finds POM clusters from PDF data!',
13
- long_description=long_description,
14
- long_description_content_type="text/markdown",
15
- py_modules=['POMFinder'],
16
- packages=['POMFinder'],
17
- package_dir={'POMFinder': 'src'},
18
- package_data={'POMFinder': ['Backend/*.model', 'Backend/*.h5', 'COD_ICSD_XYZs_POMs_unique99/*.xyz', 'Experimental_Data/*.gr']},
19
-
20
- entry_points={'console_scripts': [
21
- 'POMFinder=POMFinder.cli:main',
22
- ],
23
- },
24
- classifiers=[
25
- 'Programming Language :: Python :: 3',
26
- 'Programming Language :: Python :: 3.6',
27
- 'Programming Language :: Python :: 3.7',
28
- 'Operating System :: OS Independent',
29
- ],
30
- include_package_data = True,
31
- zip_safe=False,
32
-
33
- install_requires=[
34
- 'xgboost',
35
- 'numpy',
36
- 'matplotlib',
37
- 'sklearn',
38
- 'h5py'
39
- ],
40
- )
41
-
42
- # requirements.txt for deployment on machines that you control.
43
- # pip freeze to genereate requirements.txt file.