forked from nlesc-nano/CAT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
128 lines (123 loc) · 3.69 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
# To update the package version number, edit CAT/__version__.py
version = {}
with open(os.path.join(here, 'CAT', '__version__.py')) as f:
exec(f.read(), version)
with open('README.rst', encoding='utf-8') as readme_file:
readme = readme_file.read()
setup(
name='nlesc-CAT',
version=version['__version__'],
description=('A collection of tools designed for the automatic '
'construction of chemical compounds.'),
long_description=readme + "\n\n",
long_description_content_type='text/x-rst',
author=['Bas van Beek', 'Jelena Belic'],
author_email='b.f.van.beek@vu.nl',
url='https://github.com/nlesc-nano/CAT',
packages=[
'CAT',
'CAT.attachment',
'CAT.data',
'CAT.dye',
'CAT.data.coskf',
'CAT.data.templates',
'CAT.data.CORES',
'CAT.data.LIGANDS',
'CAT.data_handling',
'CAT.workflows'
],
package_dir={'CAT': 'CAT'},
package_data={
'CAT': [
'data/templates/*yaml',
'data/coskf/*coskf',
'data/coskf/misc/*coskf',
'data/CORES/*xyz',
'data/LIGANDS/*xyz',
'workflows/workflow_yaml.yaml',
'workflows/*.pyi',
'py.typed'
]
},
entry_points={
'console_scripts': ['init_cat=CAT.data_handling.entry_points:main']
},
include_package_data=True,
license='GNU Lesser General Public License v3 or later',
zip_safe=False,
keywords=[
'quantum-mechanics',
'molecular-mechanics',
'science',
'chemistry',
'python-3',
'python-3-6',
'python-3-7',
'python-3-8',
'python-3-9',
'python-3-10',
'automation',
'scientific-workflows'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering :: Chemistry',
'Typing :: Typed',
],
test_suite='tests',
python_requires='>=3.6',
install_requires=[
'Nano-Utils>=0.4.3',
'numpy>=1.15.0',
'scipy>=0.19.1',
'pandas>=0.23.0',
'pyyaml>=5.1',
'schema>=0.7.2,!=0.7.5',
'AssertionLib>=2.2.3',
'plams>=1.5.1',
'contextlib2>=0.6.0; python_version=="3.6"',
'typing-extensions>=3.7.4.3',
'qmflows>=0.11.0',
'rdkit-pypi>=2018.03.1',
'packaging>=1.16.8',
],
setup_requires=[
'pytest-runner',
],
extras_require={
'test': [
'pytest>=5.4.0',
'pytest-cov',
'pytest-mock',
'h5py>=2.7.0',
'sphinx>=2.4; python_version>="3.7"',
'sphinx_rtd_theme; python_version>="3.7"',
'data-CAT>=0.7.0; python_version>="3.7"',
'nano-CAT>=0.7.1; python_version>="3.7"',
'auto-FOX>=0.10.0; python_version>="3.7"',
],
'doc': [
'sphinx>=2.4',
'sphinx_rtd_theme',
'data-CAT>=0.7.0',
'nano-CAT>=0.7.1',
'auto-FOX>=0.10.0',
],
}
)