Files
cantera/interfaces/python_minimal/setup.py.in

18 lines
494 B
Python
Raw Normal View History

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',
],
},
)