Files
cantera/interfaces/python_minimal/setup.py.in
band-a-prend b3c69ac086 Fix python_minimal interface to install Cantera YAML tools
The python_minimal SConscript did't copy
cantera yaml tools to python_minimal directory
and therefore didn's install these scripts.

Signed-off-by: band-a-prend <torokhov-s-a@yandex.ru>
2021-04-10 11:16:58 -04:00

21 lines
644 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',
'ck2yaml=cantera.ck2yaml:script_entry_point',
'cti2yaml=cantera.cti2yaml:main',
'ctml2yaml=cantera.ctml2yaml:main',
],
},
)