12 lines
390 B
Python
12 lines
390 B
Python
from distutils.core 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://code.google.com/p/cantera",
|
|
packages = ['cantera'],
|
|
scripts=[@py_ctml_writer@,
|
|
@py_ck2cti@])
|