-
Notifications
You must be signed in to change notification settings - Fork 104
/
setup.py
executable file
·101 lines (94 loc) · 2.64 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
#!/usr/bin/env python
"""Catalysis Micro-kinetic Analysis Package (CatMAP)"""
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
#from catmap import __version__ as version
__version__ = "0.3.1"
__python_version__ = sys.version
maintainer = 'Andrew J. Medford'
maintainer_email = '[email protected]'
author = maintainer
author_email = maintainer_email
description = __doc__
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: X11 Applications :: GTK',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX :: Windows',
'Programming Language :: Fortran',
'Programming Language :: Python',
'Topic :: Education',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Visualization',
]
requires = ['matplotlib',
'mpmath',
'numpy',
'graphviz',
'ase' if sys.version >= '3.5' else 'ase==3.17']
license = 'COPYING.txt'
long_description = open('README.md').read()
name='python-catmap'
packages = [
'catmap',
'catmap.analyze',
'catmap.api',
'catmap.data',
'catmap.mappers',
'catmap.parsers',
'catmap.scalers',
'catmap.solvers',
'catmap.thermodynamics',
]
package_dir = {'catmap':'catmap'}
package_data = {'catmap':[]}
platforms = ['linux', 'windows']
if os.name == 'nt':
scripts = []
else:
scripts = [
'tools/catmap'
]
tests = [
"pgtest~=1.3",
"pytest~=6.0",
"pytest-regressions~=1.0"
]
extras_require = {
"tests": [
"pgtest~=1.3",
"pytest~=6.0",
"pytest-regressions~=1.0"
],
}
url = 'https://github.com/ajmedford/catmap'
setup(
author=author,
author_email=author_email,
description=description,
license=license,
long_description=long_description,
maintainer=maintainer,
maintainer_email=maintainer_email,
name=name,
package_data=package_data,
package_dir=package_dir,
packages=packages,
platforms=platforms,
scripts=scripts,
url=url,
version=__version__,
install_requires = requires,
tests=tests,
extras_require=extras_require,
)