-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·227 lines (199 loc) · 9.49 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
import os
import sys
import subprocess
import datetime
from setuptools import setup, Extension, find_packages
from setuptools.command.build_ext import build_ext
import setup.helper as setup_helper
from setup.config import SetupConfig
if sys.version_info[0] == 2:
sys.exit("Sorry, Python 2.x is not supported")
# Minimal carl version required
carl_min_version = "14.23"
carl_storm_version_prefix = "14."
pybind_version_default = "2.10.0"
# Get the long description from the README file
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), "README.md"), encoding="utf-8") as f:
long_description = f.read()
class CMakeExtension(Extension):
def __init__(self, name, sourcedir=""):
Extension.__init__(self, name, sources=[])
self.sourcedir = os.path.abspath(sourcedir)
class CMakeBuild(build_ext):
user_options = build_ext.user_options + [
("carl-dir=", None, "Path to carl root (binary) location"),
("carl-parser-dir=", None, "Path to carl-parser root (binary) location"),
("disable-cln", None, "Disable support for CLN"),
("disable-parser", None, "Disable parsing support"),
("debug", None, "Build in Debug mode"),
("jobs=", "j", "Number of jobs to use for compiling"),
("pybind-version=", None, "Pybind11 version to use"),
]
config = SetupConfig()
def _extdir(self, extname):
return os.path.abspath(os.path.dirname(self.get_ext_fullpath(extname)))
def run(self):
try:
_ = subprocess.check_output(["cmake", "--version"])
except OSError:
raise RuntimeError("CMake must be installed to build the following extensions: " + ", ".join(e.name for e in self.extensions))
# Build cmake version info
print("Pycarl - Building into {}".format(self.build_temp))
build_temp_version = self.build_temp + "-version"
setup_helper.ensure_dir_exists(build_temp_version)
# Write config
setup_helper.ensure_dir_exists(self.build_temp)
self.config.write_config(os.path.join(self.build_temp, "build_config.cfg"))
cmake_args = []
carl_dir = os.path.expanduser(self.config.get_as_string("carl_dir"))
carl_parser_dir = os.path.expanduser(self.config.get_as_string("carl_parser_dir"))
if carl_dir:
cmake_args += ["-DCARL_DIR_HINT=" + carl_dir]
if carl_parser_dir:
cmake_args += ["-DCARLPARSER_DIR_HINT=" + carl_parser_dir]
_ = subprocess.check_output(["cmake", os.path.abspath("cmake")] + cmake_args, cwd=build_temp_version)
cmake_conf = setup_helper.load_cmake_config(os.path.join(build_temp_version, "generated/config.py"))
# Set carl directory
if carl_dir == "":
carl_dir = cmake_conf.CARL_DIR
if carl_dir != cmake_conf.CARL_DIR:
print("Pycarl - WARNING: Using different carl directory {} instead of given {}!".format(cmake_conf.CARL_DIR, carl_dir))
carl_dir = cmake_conf.CARL_DIR
# Set carl-parser directory
if carl_parser_dir == "":
carl_parser_dir = cmake_conf.CARL_PARSER_DIR
if carl_parser_dir != cmake_conf.CARL_PARSER_DIR:
print("Pycarl - WARNING: Using different carl-parser directory {} instead of given {}!".format(cmake_conf.CARL_PARSER_DIR, carl_parser_dir))
carl_parser_dir = cmake_conf.CARL_PARSER_DIR
# Check version
from packaging.version import Version # Need to import here because otherwise packaging cannot be automatically installed as required dependency
carl_version, carl_commit = setup_helper.parse_carl_version(cmake_conf.CARL_VERSION)
if not carl_version.startswith(carl_storm_version_prefix):
print(
"Pycarl - We only support carl-storm (https://github.com/moves-rwth/carl-storm) indicated by version 14.x. On this system, we only found version {} at {}".format(
carl_version, carl_dir
)
)
elif Version(carl_version) < Version(carl_min_version):
sys.exit("Pycarl - Error: carl version {} from '{}' is not supported anymore!".format(carl_version, carl_dir))
# Check additional support
enable_parser = not self.config.get_as_bool("disable_parser")
enable_cln = not self.config.get_as_bool("disable_cln")
use_parser = enable_parser and cmake_conf.CARL_WITH_PARSER
use_cln = enable_cln and cmake_conf.CARL_WITH_CLN
# Set pybind version
pybind_version = self.config.get_as_string("pybind_version")
if pybind_version == "":
pybind_version = pybind_version_default
# Print build info
print("Pycarl - Using carl {} from {}".format(carl_version, carl_dir))
print("Pycarl - Using pybind11 version {}".format(pybind_version))
if use_parser:
print("Pycarl - carl parser extension from {} included.".format(carl_parser_dir))
else:
print("Pycarl - WARNING: No parser support!")
if use_cln:
print("Pycarl - Support for CLN found and included.")
else:
print("Pycarl - WARNING: No support for CLN!")
build_type = "Debug" if self.config.get_as_bool("debug") else "Release"
# Set cmake build options
cmake_args = ["-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=" + self._extdir("core")]
cmake_args += ["-DPython_EXECUTABLE=" + sys.executable]
cmake_args += ["-DCMAKE_BUILD_TYPE=" + build_type]
cmake_args += ["-DPYBIND_VERSION=" + pybind_version]
if carl_dir is not None:
cmake_args += ["-DCARL_DIR_HINT=" + carl_dir]
if use_parser and carl_parser_dir:
cmake_args += ["-DCARLPARSER_DIR_HINT=" + carl_parser_dir]
cmake_args += ["-DUSE_PARSER=" + ("ON" if use_parser else "OFF")]
cmake_args += ["-DUSE_CLN_NUMBERS=" + ("ON" if use_cln else "OFF")]
# Configure extensions
env = os.environ.copy()
env["CXXFLAGS"] = '{} -DVERSION_INFO=\\"{}\\"'.format(env.get("CXXFLAGS", ""), self.distribution.get_version())
setup_helper.ensure_dir_exists(self.build_temp)
print("Pycarl - CMake args={}".format(cmake_args))
# Call cmake
subprocess.check_call(["cmake", os.path.abspath("")] + cmake_args, cwd=self.build_temp, env=env)
# Set build args
build_args = ["--config", build_type]
build_args += ["--", "-j{}".format(self.config.get_as_int("jobs"))]
# Build extensions
for ext in self.extensions:
if "cln" in ext.name and not use_cln:
print("Pycarl - Skipped CLN bindings")
continue
if "parse" in ext.name and not use_parser:
print("Pycarl - Skipped parser bindings")
continue
# Call make
subprocess.check_call(["cmake", "--build", ".", "--target", ext.name] + build_args, cwd=self.build_temp)
def initialize_options(self):
build_ext.initialize_options(self)
# Set default values for custom cmdline flags
self.carl_dir = None
self.carl_parser_dir = None
self.disable_cln = None
self.disable_parser = None
self.debug = None
self.jobs = None
self.pybind_version = None
def finalize_options(self):
build_ext.finalize_options(self)
# Load setup config
# This can only be done after the finalization step, because otherwise build_temp is not initialized yet.
self.config.load_from_file(os.path.join(self.build_temp, "build_config.cfg"))
# Update setup config
self.config.update("carl_dir", self.carl_dir)
self.config.update("carl_parser_dir", self.carl_parser_dir)
self.config.update("disable_cln", self.disable_cln)
self.config.update("disable_parser", self.disable_parser)
self.config.update("debug", self.debug)
self.config.update("jobs", self.jobs)
self.config.update("pybind_version", self.pybind_version)
setup(
name="pycarl",
version=setup_helper.obtain_version(),
author="S. Junges",
author_email="[email protected]",
maintainer="M. Volk",
maintainer_email="[email protected]",
url="https://github.com/moves-rwth/pycarl/",
description="pycarl - Python Bindings for CArL",
long_description=long_description,
long_description_content_type="text/markdown",
project_urls={
"Documentation": "https://moves-rwth.github.io/pycarl/",
"Source": "https://github.com/moves-rwth/pycarl/",
"Bug reports": "https://github.com/moves-rwth/pycarl/issues",
},
classifiers=[
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=find_packages("lib"),
package_dir={"": "lib"},
include_package_data=True,
package_data={"pycarl.examples": ["examples/files/*"]},
ext_package="pycarl",
ext_modules=[
CMakeExtension("core"),
CMakeExtension("cln"),
CMakeExtension("gmp"),
CMakeExtension("formula"),
CMakeExtension("formula-cln"),
CMakeExtension("formula-gmp"),
CMakeExtension("parse"),
CMakeExtension("parse-gmp"),
CMakeExtension("parse-cln"),
],
cmdclass={"build_ext": CMakeBuild},
zip_safe=False,
setup_requires=["packaging"],
extras_require={
"doc": ["Sphinx", "sphinx-bootstrap-theme"],
"dev": ["tox"],
},
python_requires=">=3.7", # required by packaging
)