mirror of
https://github.com/Cantera/cantera.git
synced 2025-02-25 18:55:29 -06:00
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>
21 lines
644 B
Python
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',
|
|
],
|
|
},
|
|
)
|