forked from pyrometheus/pyrometheus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (35 loc) · 1.26 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
#! /usr/bin/env python3
from setuptools import setup, find_packages
ver_fname = "pyrometheus/version.py"
with open(ver_fname) as inf:
version_file_contents = inf.read()
ver_dic = {}
exec(compile(version_file_contents, ver_fname, "exec"), ver_dic)
setup(name="pyrometheus",
version=ver_dic["VERSION_TEXT"],
description="Code generation for Cantera mechanisms",
long_description=open("README.rst", "r").read(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
],
python_requires="~=3.6",
install_requires=[
"cantera",
"pymbolic",
"mako",
],
author="Andreas Kloeckner",
url="https://github.com/inducer/pyrometheus",
author_email="[email protected]",
license="MIT",
packages=find_packages())