forked from MolSSI-BSE/basis_set_exchange
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
84 lines (75 loc) · 2.81 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
import os
import setuptools
import versioneer
_my_dir = os.path.dirname(os.path.abspath(__file__))
_readme_path = os.path.join(_my_dir, "README.md")
# Use the readme file for a description
with open(_readme_path, 'r', encoding='utf-8') as readme_file:
long_description = readme_file.read()
# Find the json files in the data dir and the schema dir
bse_package_data = ['pytest.ini']
data_dirs = ['data', 'schema',
os.path.join('tests', 'sources'),
os.path.join('tests', 'fakedata'),
os.path.join('tests', 'curate_test_data'),
os.path.join('tests', 'reader_test_data'),
os.path.join('tests', 'validator_test_data'),
os.path.join('tests', 'dunning_extend'),
os.path.join('tests', 'truhlar')
]
for data_dir in data_dirs:
for (path, _, filenames) in os.walk(os.path.join('basis_set_exchange', data_dir)):
for filename in filenames:
filepath = os.path.join(path, filename)
bse_package_data.append(os.path.relpath(filepath, 'basis_set_exchange'))
if __name__ == "__main__":
my_packages = setuptools.find_packages()
setuptools.setup(
name='basis_set_exchange',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='The Quantum Chemistry Basis Set Exchange',
long_description=long_description,
long_description_content_type='text/markdown',
author='The Molecular Sciences Software Institute',
author_email='[email protected]',
url="https://github.com/MolSSI-BSE/basis_set_exchange",
license='BSD-3C',
packages=my_packages,
entry_points={
"console_scripts": ["bse=basis_set_exchange.cli:run_bse_cli",
"bsecurate=basis_set_exchange.cli:run_bsecurate_cli"]
},
install_requires=[
'jsonschema',
'argcomplete'
],
extras_require={
'docs': [
'sphinx',
'sphinxcontrib-programoutput',
'sphinx_rtd_theme',
'numpydoc',
'graphviz'
],
'tests': [
'pytest>=4.0',
'pytest-cov'
],
'curate': [
'graphviz'
]
},
python_requires='>=3',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
package_data={'basis_set_exchange': bse_package_data},
zip_safe=True,
)