-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
45 lines (41 loc) · 1.3 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from os import path
import sys
# get version
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'ctwrap', '_version.py')) as version_file:
exec(version_file.read())
""" load readme """
with open('README.md', 'r', encoding="utf-8") as f:
long_description = f.read()
# configuration
setup(
name='ctwrap',
version=__version__,
description='Python wrapper for batch simulations',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
python_requires='>=3.6',
keywords='python, wrapper, cantera',
url='https://github.com/microcombustion/ctwrap',
author=__author__,
author_email='ischoegl@lsu.edu',
license='MIT',
packages=find_packages(),
entry_points={
'console_scripts': ['ctwrap=ctwrap.bin.ctwrap:main'],
},
include_package_data=True,
install_requires=[
'h5py', 'numpy', 'pandas', 'pint', 'ruamel.yaml'],
zip_safe=False
)