-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
66 lines (61 loc) · 1.8 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
import setuptools
from os import path
import surfreact
here = path.abspath(path.dirname(__file__))
AUTHORS = """
Brenden Pelkie
Stephanie Valleau
"""
# Get the long description from the README file
with open(path.join(here, 'README.md')) as f:
long_description = f.read()
if __name__ == "__main__":
setuptools.setup(
name='surfreact',
version='0.1',
author=AUTHORS,
project_urls={
'Source': 'https://github.com/brendenpelkie/learning_fluxflux_kinetics',
},
description=
'tools for ML with surface reactions and CFF',
long_description=long_description,
include_package_data=False, #no data yet, True if we want to include data
keywords=[
'Machine Learning', 'Reaction Kinetics', 'Ab initio',
'Chemical Engineering','Chemistry',
],
license='Apache License 2.0',
packages=setuptools.find_packages(exclude="tests"),
scripts = [], #if we want to include shell scripts we make in the install
install_requires=[
'numpy',
'pandas',
'ase',
'seaborn',
'cathub',
'sqlalchemy',
'matplotlib',
'scipy'
],
extras_require={
'tests': [
'pytest',
'coverage',
'flake8',
'flake8-docstrings'
],
'docs': [
'sphinx',
'sphinx_rtd_theme',
]
},
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Console',
'Operating System :: OS Independant',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
],
zip_safe=False,
)