initial import
This commit is contained in:
parent
e60cc5b8db
commit
83ad5a01f9
1 changed files with 26 additions and 0 deletions
26
Cantera/python/winsetup.py
Executable file
26
Cantera/python/winsetup.py
Executable file
|
|
@ -0,0 +1,26 @@
|
|||
from distutils.core import setup, Extension
|
||||
|
||||
libdir = ['C:/cygwin/home/Dave/dv/sf/cantera/build/lib/i686-pc-win32']
|
||||
|
||||
setup(name="Cantera",
|
||||
version="1.5.4",
|
||||
description="The Cantera Python Interface",
|
||||
long_description="""
|
||||
""",
|
||||
author="Prof. D. G. Goodwin, Caltech",
|
||||
author_email="dgoodwin@caltech.edu",
|
||||
url="http://www.cantera.org",
|
||||
package_dir = {'MixMaster':'../../apps/MixMaster'},
|
||||
py_modules = ["ctml_writer"],
|
||||
packages = ["Cantera","Cantera.OneD",
|
||||
"MixMaster","MixMaster.Units"],
|
||||
ext_modules=[ Extension("Cantera._cantera",
|
||||
["src/pycantera.cpp"],
|
||||
include_dirs=["../../build/include",
|
||||
"src", "../clib/src"],
|
||||
library_dirs = libdir,
|
||||
depends = [libdir[0]+'/clib.lib'],
|
||||
libraries = ["clib"])
|
||||
],
|
||||
)
|
||||
|
||||
Loading…
Add table
Reference in a new issue