17 lines
492 B
Python
17 lines
492 B
Python
from setuptools import setup
|
|
|
|
setup(name="Cantera_minimal",
|
|
version="@cantera_version@",
|
|
description="The Minimal Cantera Python Interface",
|
|
long_description="",
|
|
author="Raymond Speth",
|
|
author_email="speth@mit.edu",
|
|
url="http://www.cantera.org",
|
|
packages = ['cantera'],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'ck2cti=cantera.ck2cti:script_entry_point',
|
|
'ctml_writer=cantera.ctml_writer:main',
|
|
],
|
|
},
|
|
)
|