cantera/interfaces/python_minimal/setup.py.in
Bryan W. Weber fea1a36294
Rename minimal Python interface package
The name 'Cantera (minimal)' conflicts with PEP 503 because of the
parentheses.
2016-08-11 19:10:16 -04:00

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