forked from Pyomo/pyomo
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
276 lines (257 loc) · 9.95 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
# ___________________________________________________________________________
#
# Pyomo: Python Optimization Modeling Objects
# Copyright 2017 National Technology and Engineering Solutions of Sandia, LLC
# Under the terms of Contract DE-NA0003525 with National Technology and
# Engineering Solutions of Sandia, LLC, the U.S. Government retains certain
# rights in this software.
# This software is distributed under the 3-clause BSD License.
# ___________________________________________________________________________
"""
Script to generate the installer for pyomo.
"""
import os
import platform
import sys
from setuptools import setup, find_packages, Command
try:
from setuptools import DistutilsOptionError
except ImportError:
from distutils.errors import DistutilsOptionError
def read(*rnames):
with open(os.path.join(os.path.dirname(__file__), *rnames)) as README:
# Strip all leading badges up to, but not including the COIN-OR
# badge so that they do not appear in the PyPI description
while True:
line = README.readline()
if 'COIN-OR' in line:
break
if line.strip() and '[![' not in line:
break
return line + README.read()
def get_version():
# Source pyomo/version/info.py to get the version number
_verInfo = dict(globals())
_verFile = os.path.join(os.path.dirname(__file__),
'pyomo','version','info.py')
with open(_verFile) as _FILE:
exec(_FILE.read(), _verInfo)
return _verInfo['__version__']
CYTHON_REQUIRED = "required"
if not any(arg.startswith(cmd)
for cmd in ('build','install','bdist') for arg in sys.argv):
using_cython = False
else:
using_cython = "automatic"
if '--with-cython' in sys.argv:
using_cython = CYTHON_REQUIRED
sys.argv.remove('--with-cython')
if '--without-cython' in sys.argv:
using_cython = False
sys.argv.remove('--without-cython')
ext_modules = []
if using_cython:
try:
if platform.python_implementation() != "CPython":
# break out of this try-except (disable Cython)
raise RuntimeError("Cython is only supported under CPython")
from Cython.Build import cythonize
#
# Note: The Cython developers recommend that you destribute C source
# files to users. But this is fine for evaluating the utility of Cython
#
import shutil
files = [
"pyomo/core/expr/numvalue.pyx",
"pyomo/core/expr/numeric_expr.pyx",
"pyomo/core/expr/logical_expr.pyx",
#"pyomo/core/expr/visitor.pyx",
"pyomo/core/util.pyx",
"pyomo/repn/standard_repn.pyx",
"pyomo/repn/plugins/cpxlp.pyx",
"pyomo/repn/plugins/gams_writer.pyx",
"pyomo/repn/plugins/baron_writer.pyx",
"pyomo/repn/plugins/ampl/ampl_.pyx",
]
for f in files:
shutil.copyfile(f[:-1], f)
ext_modules = cythonize(files, compiler_directives={
"language_level": 3 if sys.version_info >= (3, ) else 2})
except:
if using_cython == CYTHON_REQUIRED:
print("""
ERROR: Cython was explicitly requested with --with-cython, but cythonization
of core Pyomo modules failed.
""")
raise
using_cython = False
class DependenciesCommand(Command):
"""Custom setuptools command
This will output the list of dependencies, including any optional
dependencies for 'extras_require` targets. This is needed so that
we can (relatively) easily extract what `pip install '.[optional]'`
would have done so that we can pass it on to a 'conda install'
command when setting up Pyomo testing in a conda environment
(because conda for all intents does not acknowledge
`extras_require`).
"""
description = "list the dependencies for this package"
user_options = [
('extras=', None, 'extra targets to include'),
]
def initialize_options(self):
self.extras = None
def finalize_options(self):
if self.extras is not None:
self.extras = [
e for e in (_.strip() for _ in self.extras.split(',')) if e
]
for e in self.extras:
if e not in setup_kwargs['extras_require']:
raise DistutilsOptionError(
"extras can only include {%s}"
% (', '.join(setup_kwargs['extras_require'])))
def run(self):
deps = list(self._print_deps(setup_kwargs['install_requires']))
if self.extras is not None:
for e in self.extras:
deps.extend(self._print_deps(setup_kwargs['extras_require'][e]))
print(' '.join(deps))
def _print_deps(self, deplist):
implementation_name = sys.implementation.name
platform_system = platform.system()
python_version = '.'.join(platform.python_version_tuple()[:2])
for entry in deplist:
dep, _, condition = (_.strip() for _ in entry.partition(';'))
if condition and not eval(condition):
continue
yield dep
setup_kwargs = dict(
name = 'Pyomo',
#
# Note: the release number is set in pyomo/version/info.py
#
cmdclass = {'dependencies': DependenciesCommand},
version = get_version(),
maintainer = 'Pyomo Developer Team',
maintainer_email = '[email protected]',
url = 'http://pyomo.org',
license = 'BSD',
platforms = ["any"],
description = 'Pyomo: Python Optimization Modeling Objects',
long_description = read('README.md'),
long_description_content_type = 'text/markdown',
keywords = ['optimization'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules' ],
python_requires = '>=3.6',
install_requires = [
'ply',
],
extras_require = {
'tests': [
'coverage',
'nose',
'parameterized',
'pybind11',
],
'docs': [
'Sphinx>2',
'sphinx-copybutton',
'sphinx_rtd_theme>0.5',
'sphinxcontrib-jsmath',
'sphinxcontrib-napoleon',
'numpy', # Needed by autodoc for pynumero
],
'optional': [
'dill', # No direct use, but improves lambda pickle
'ipython', # contrib.viewer
'matplotlib',
'networkx', # network, incidence_analysis, community_detection
'numpy',
'openpyxl', # dataportals
#'pathos', # requested for #963, but PR currently closed
'pint', # units
'python-louvain', # community_detection
'pyyaml', # core
'sympy', # differentiation
'xlrd', # dataportals
'z3-solver', # community_detection
#
# subprocess output is merged more reliably if
# 'PeekNamedPipe' is available from pywin32
'pywin32; platform_system=="Windows"',
#
# The following optional dependencies are difficult to
# install on PyPy (binary wheels are not available), so we
# will only "require" them on other (CPython) platforms:
'casadi; implementation_name!="pypy"', # dae
'numdifftools; implementation_name!="pypy"', # pynumero
'pandas; implementation_name!="pypy"',
'scipy; implementation_name!="pypy"',
'seaborn; implementation_name!="pypy"', # parmest.graphics
],
},
packages = find_packages(exclude=("scripts",)),
package_data = {
"pyomo.contrib.appsi.cmodel": ["src/*"],
"pyomo.contrib.mcpp": ["*.cpp"],
"pyomo.contrib.pynumero": ['src/*', 'src/tests/*'],
"pyomo.contrib.viewer": ["*.ui"],
},
ext_modules = ext_modules,
entry_points = """
[console_scripts]
pyomo = pyomo.scripting.pyomo_main:main_console_script
[pyomo.command]
pyomo.help = pyomo.scripting.driver_help
pyomo.viewer=pyomo.contrib.viewer.pyomo_viewer
"""
)
try:
setup(**setup_kwargs)
except SystemExit as e_info:
# Cython can generate a SystemExit exception on Windows if the
# environment is missing / has an incorrect Microsoft compiler.
# Since Cython is not strictly required, we will disable Cython and
# try re-running setup(), but only for this very specific situation.
if 'Microsoft Visual C++' not in str(e_info):
raise
elif using_cython == CYTHON_REQUIRED:
print("""
ERROR: Cython was explicitly requested with --with-cython, but cythonization
of core Pyomo modules failed.
""")
raise
else:
print("""
ERROR: setup() failed:
%s
Re-running setup() without the Cython modules
""" % (str(e_info),))
setup_kwargs['ext_modules'] = []
setup(**setup_kwargs)
print("""
WARNING: Installation completed successfully, but the attempt to cythonize
core Pyomo modules failed. Cython provides performance
optimizations and is not required for any Pyomo functionality.
Cython returned the following error:
"%s"
""" % (str(e_info),))