forked from VlachosGroup/openmkm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
66 lines (59 loc) · 2.27 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
# coding: utf-8
# Distributed under MIT License
import sys
import platform
from setuptools import setup, find_packages#, Extension
#from setuptools.command.build_ext import build_ext as _build_ext
extra_link_args = []
if sys.platform.startswith('win') and platform.machine().endswith('64'):
extra_link_args.append('-Wl,--allow-multiple-definition')
long_desc = """
Hetero_Ct (Heterogeneous Catalysis) is a open-source Python library
for microkinetic modeling of heterogeneous catalyst reactions.
"""
setup(
name="hetero_ct",
packages=find_packages(),
version="0.0.1",
#cmdclass={'build_ext': build_ext},
setup_requires=['numpy>=1.14.3', 'setuptools>=18.0', 'cantera>=2.4.0'],
install_requires=["numpy>=1.14.3", 'cantera>=2.4.0',
"monty>=0.9.6", "scipy>=1.0.1",
"matplotlib>=1.5", "palettable>=2.1.1"],
#extras_require={
# ':python_version == "2.7"': [
# 'enum34',
# ],
# "provenance": ["pybtex"],
# "vis": ["vtk>=6.0.0"],
# },
#package_data=None,
author="Bharat Medasani",
author_email="[email protected]",
maintainer="Bharat Medasani",
maintainer_email="[email protected]",
#url=None,
license="MIT",
description="Hetero_Ct is a microkinetic modeling software targeting "
"heterogeneous catalysis. It is based on Cantera.",
long_description=long_desc,
#keywords=["microkinetic modeling", "heterogeneous catalysis", "catalysis", "science",
# "project", "surface"],
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Development Status :: 0 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Chemical Engineering",
"Topic :: Software Development :: Libraries :: Python Modules"
]#,
#ext_modules=None,
#entry_points=None
)