forked from ibell/pdsim
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
144 lines (122 loc) · 4.85 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
try:
import cython
except:
raise ImportError('Sorry the required package cython was not found')
try:
import CoolProp
except ImportError as IE:
print IE
raise ImportError('The required python package CoolProp was not found or could not be imported. Please go to coolprop.sf.net to obtain a copy')
import warnings, setuptools
from distutils.core import setup
from Cython.Build import cythonize
from Cython.Distutils import build_ext
from Cython.Distutils.extension import Extension
import sys, shutil, os, glob
version = '2.9'
if len(sys.argv) == 1:
sys.argv += ['clean','develop']
#sys.argv += ['clean','install']
#Modify the __init__ file with this version string
fName = os.path.join('PDSim','__init__.py')
lines = open(fName,'r').readlines()
fp = open(fName,'w')
for line in lines:
if line.startswith('__version__'):
line = "__version__ = '" + version + "'"
fp.write(line+'\n')
fp.close()
import Cython
#This will generate HTML to show where there are still pythonic bits hiding out
Cython.Compiler.Options.annotate = True
#Get the numpy include folder
import numpy
#Each of the Pure-Python or PYX files in this list will be compiled to a python module
pyx_list = [
"PDSim/core/_bearings.pyx",
"PDSim/core/containers.pyx",
"PDSim/core/callbacks.pyx",
"PDSim/misc/scipylike.pyx",
"PDSim/flow/flow_models.pyx",
"PDSim/flow/flow.pyx",
"PDSim/flow/fanno.pyx",
"PDSim/misc/stl_utilities.pyx",
"PDSim/misc/datatypes.pyx",
"PDSim/misc/clipper/pyclipper.pyx",
"PDSim/recip/_recip.pyx",
"PDSim/scroll/common_scroll_geo.pyx",
"PDSim/scroll/symm_scroll_geo.pyx",
"PDSim/scroll/_scroll.pyx"
]
def clean():
for pyx_file in pyx_list:
f_root = pyx_file.rsplit('.',1)[0]
for ending in ['.pyd','.so']:
fname = f_root+ending
try:
os.remove(fname)
print 'removed',fname
except OSError:
pass
# Try to remove the generated files in the source tree
# if you are doing an install to the normal location
if '--inplace' not in sys.argv or '--clean' in sys.argv:
clean()
if '--clean' in sys.argv:
sys.argv.remove('--clean')
for i in range(len(pyx_list)-1,-1,-1):
if not os.path.exists(pyx_list[i]):
warnings.warn(pyx_list[i]+' was not found')
pyx_list.pop(i)
pxd_files = []
ext_module_list = []
package_pxd_files = {}
for pyx_file in pyx_list:
sources = [pyx_file]
#Try to find a PXD backpack if possible
pxd_file = pyx_file.rsplit('.',1)[0]+'.pxd'
if os.path.exists(pxd_file):
sources+=[pxd_file]
pxd_files.append(pxd_file)
# Add sources for clipper module
if pyx_file.find('pyclipper') > -1:
sources += [os.path.join('PDSim','misc','clipper','clipper.cpp')]
#Build an extension with the sources
ext_name = pyx_file.rsplit('.',1)[0].replace('/','.')
name = ext_name.rsplit('.',1)[0]
pxd = pxd_file.split('PDSim/',1)[1].split('/')[1]
if name in package_pxd_files:
package_pxd_files[name].append(pxd)
else:
package_pxd_files[name] = [pxd]
ext_module_list.append(Extension(ext_name,
sources,
language='c++',
define_macros = [('SWIG',None)], # Workaround to remove dependency on rapidjson in Configuration.h
cython_c_in_temp=True
)
)
package_data = package_pxd_files
setup(
name = 'PDSim',
version = version,
author = "Ian Bell",
author_email='[email protected]',
url='http://pdsim.sourceforge.net',
description = """A flexible open-source framework for the quasi-steady-state simulation of positive displacement machines including compressors and expanders""",
packages = ['PDSim','PDSim.core','PDSim.flow','PDSim.plot','PDSim.scroll','PDSim.misc','PDSim.recip','PDSim.misc.clipper'],
cmdclass={'build_ext': build_ext},
ext_modules = cythonize(ext_module_list,
compiler_directives=dict(profile = True, embedsignature = True),
),
package_dir = {'PDSim':'PDSim',},
package_data = package_data,
include_dirs = [numpy.get_include(), CoolProp.get_include_directory(), "PDSim/misc/clipper", "PDSim/misc/spline"],
)
try:
import quantities
print('quantities package found, no need to install from source')
except ImportError:
print('quantities package not found, will install from sources in externals/quantities. Please hold on.')
import subprocess
subprocess.check_output('python setup.py install', shell = True, cwd=os.path.join('externals','quantities'))