-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
42 lines (38 loc) · 1.33 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
import setuptools
with open('requirements.txt', 'r') as f:
requirements = f.readlines()
git_requirements = [f.strip('\n') for f in requirements if 'git' in f]
requirements = [f for f in requirements if 'git' not in f]
1
with open('README.md', 'r') as f:
readme = f.read()
setuptools.setup(
name="Cathub",
version="0.1.7",
url="https://github.com/SUNCAT-Center/CatHub",
author="Kirsten Winther",
author_email="[email protected]",
description="Python API for the Surface Reactions database on Catalysis-Hub.org",
long_description=readme,
license='GPL-3.0',
packages=[
'cathub',
'cathub.ase_tools',
'cathub.experimental',
],
package_dir={'cathub': 'cathub'},
entry_points={'console_scripts': ['cathub=cathub.cli:cli']},
install_requires=requirements,
python_requires='>=3.6',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Chemistry',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)