-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
79 lines (73 loc) · 2.42 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env python
import importlib
import os
from setuptools import find_packages, setup
HERE = os.path.abspath(os.path.dirname(__file__))
version = {}
with open(os.path.join(HERE, 'flamingo', '__version__.py')) as f:
exec(f.read(), version)
with open('README.rst') as readme_file:
README = readme_file.read()
setup(
name='nlesc-flamingo',
version=version['__version__'],
description="Compute and filter molecular properties",
long_description=README + '\n\n',
long_description_content_type='text/x-rst',
author="Felipe Zapata",
author_email='[email protected]',
url='https://github.com/https://github.com/nlesc-nano/flamingo',
packages=find_packages(),
include_package_data=True,
license="Apache Software License 2.0",
zip_safe=False,
keywords='flamingo',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Typing :: Typed',
],
python_requires='>=3.7',
install_requires=[
'nlesc-CAT>=0.10.0',
'nano-CAT>=0.7.0',
'data-CAT>=0.7.0',
'plams>=1.5.1',
'more_itertools',
'numpy',
'pandas<2.0.0',
'pyyaml>=5.1.1',
'schema!=0.7.5',
'typing_extensions',
'h5py',
'rdkit',
],
entry_points={
'console_scripts': [
'smiles_screener=flamingo.screen:main'
]
},
package_data={
'flamingo': [
'data/scscore/full_reaxys_model_1024bool/model.ckpt-10654.as_numpy.json.gz',
'data/scscore/full_reaxys_model_2048bool/model.ckpt-10654.as_numpy.json.gz',
'py.typed',
]
},
data_files=[('citation/flamingo', ['CITATION.cff'])],
extras_require={
'test': ['coverage', 'mypy', 'pycodestyle', 'pytest>=3.9', 'pytest-cov',
'pytest-mock', 'types-setuptools', 'types-pyyaml'],
'doc': ['sphinx', 'sphinx-autodoc-typehints', 'sphinx_rtd_theme',
'nbsphinx']
}
)