-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
94 lines (89 loc) · 2.54 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
#!/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 nano_CAT/__version__.py
version = {}
with open(os.path.join(here, 'nanoCAT', '__version__.py')) as f:
exec(f.read(), version)
with open('README.rst') as readme_file:
readme = readme_file.read()
setup(
name='Nano-CAT',
version=version['__version__'],
description='A collection of tools for the analysis of nanocrystals.',
long_description=readme + '\n\n',
author=['Bas van Beek'],
author_email='[email protected]',
url='https://github.com/nlesc-nano/nano-CAT',
packages=[
'nanoCAT',
'nanoCAT.bde',
'nanoCAT.asa',
'nanoCAT.ff',
'nanoCAT.recipes',
'nanoCAT.bulk',
],
package_dir={'nanoCAT': 'nanoCAT'},
package_data={'nanoCAT': ['data/*csv', 'py.typed', '*.pyi']},
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-7',
'python-3-8',
'python-3-9',
'python-3-10',
'python-3-11',
'automation',
'scientific-workflows'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Chemistry',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'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',
],
test_suite='tests',
python_requires='>=3.7',
install_requires=[
'Nano-Utils>=2.3.1',
'numpy>=1.15.0',
'scipy>=0.19.1',
'pandas>=0.24.0,<=2.0.0',
'AssertionLib>=2.3',
'noodles>=0.3.3',
'more-itertools>=1.0',
'plams>=1.5.1',
'qmflows>=0.12.0',
'nlesc-CAT>=0.11.1',
'Auto-FOX>=0.10.0',
'rdkit-pypi>=2018.03.1',
],
tests_require=[
'pytest',
'pytest-cov',
'flake8',
],
extras_require={
'test': [
'pyyaml>=5.1',
'pytest',
'pytest-cov',
'pytest-mock',
],
}
)