-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (27 loc) · 930 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (27 loc) · 930 Bytes
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
import os
from setuptools import setup, find_packages
# This reads the __version__ variable from pychemkin/_version.py
exec(open('pychemkin/_version.py').read())
# Get the long description from the README file
long_description = open('README.md').read()
# Read in requirements.txt
requirements = open('requirements.txt').readlines()
requirements = [r.strip() for r in requirements]
setup(
name='pychemkin',
version=__version__,
description='Chemical kinetics library',
keywords='chemical kinetics',
long_description=long_description,
install_requires=requirements,
url='https://github.com/dsondak/pychemkin',
author='PyChemKin Developers',
author_email='hsim13372@gmail.com',
license='MIT',
packages=['pychemkin'],
test_suite='tests',
include_package_data=True,
package_data={
'pychemkin': [os.path.join('pychemkin', 'thermo_database', '*.sqlite')]
}
)