-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·20 lines (17 loc) · 909 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
from distutils.core import setup
setup(name="ChemPathTool",
version="1.0",
description="Chemical Path Diagram Drawing Tool",
author="Marc Day and Joe Grcar",
author_email="MSDay@lbl.gov",
url="http://seesar.lbl.gov/CCSE",
py_modules=['chemPathTool','MyPmwRadioSelect','mechinfo','genPathEdgeData',
'CanteraChemEdgeAnalysis','ChemEdge','ChemEdgeAnalysis',
'chemPathToolScr'],
data_files=[('Lib\site-packages',['README.chemPathTool']),
('Lib\site-packages\ChemPathToolData',['ChemPathToolData/leanVFI.ced',
'ChemPathToolData/leanVFI.clf',
'ChemPathToolData/pyCanteraEX.ced',
'ChemPathToolData/pyCanteraEX.clf'])]
)