forked from QuTech-Delft/libqasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·239 lines (202 loc) · 9.15 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
#!/usr/bin/env python3
import os, platform, shutil, sys, re
from distutils.dir_util import copy_tree
from setuptools import setup, Extension
from distutils.command.clean import clean as _clean
from setuptools.command.build_ext import build_ext as _build_ext
from distutils.command.build import build as _build
from setuptools.command.install import install as _install
from distutils.command.bdist import bdist as _bdist
from wheel.bdist_wheel import bdist_wheel as _bdist_wheel
from distutils.command.sdist import sdist as _sdist
from setuptools.command.egg_info import egg_info as _egg_info
root_dir = os.getcwd() # root of the repository
src_dir = root_dir + os.sep + 'src' # C++ source directory
pysrc_dir = root_dir + os.sep + 'python' # Python source files
target_dir = root_dir + os.sep + 'pybuild' # python-specific build directory
build_dir = target_dir + os.sep + 'build' # directory for setuptools to dump various files into
dist_dir = target_dir + os.sep + 'dist' # wheel output directory
cbuild_dir = target_dir + os.sep + 'cbuild' # cmake build directory
prefix_dir = target_dir + os.sep + 'prefix' # cmake install prefix
srcmod_dir = pysrc_dir + os.sep + 'module' # libQasm Python module directory, source files only
module_dir = target_dir + os.sep + 'module' # libQasm Python module directory, including generated file(s)
# Copy the hand-written Python sources into the module directory that we're
# telling setuptools is our source directory, because setuptools insists on
# spamming output files into that directory. This is ugly, especially because
# it has to run before setup() is invoked, but seems to be more-or-less
# unavoidable to get editable installs to work.
if not os.path.exists(target_dir):
os.makedirs(target_dir)
copy_tree(srcmod_dir, module_dir)
def get_version(verbose=0):
return '0.4.0'
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
class clean(_clean):
def run(self):
_clean.run(self)
if os.path.exists(target_dir):
shutil.rmtree(target_dir)
class build_ext(_build_ext):
def run(self):
from plumbum import local, FG, ProcessExecutionError
# If we were previously built in a different directory, nuke the cbuild
# dir to prevent inane CMake errors. This happens when the user does
# pip install . after building locally.
if os.path.exists(cbuild_dir + os.sep + 'CMakeCache.txt'):
with open(cbuild_dir + os.sep + 'CMakeCache.txt', 'r') as f:
for line in f.read().split('\n'):
line = line.split('#')[0].strip()
if not line:
continue
if line.startswith('cqasm_BINARY_DIR:STATIC'):
config_dir = line.split('=', maxsplit=1)[1]
if os.path.realpath(config_dir) != os.path.realpath(cbuild_dir):
print('removing pybuild/cbuild to avoid CMakeCache error')
shutil.rmtree(cbuild_dir)
break
# Figure out how many parallel processes to build with.
if self.parallel:
nprocs = str(self.parallel)
else:
nprocs = os.environ.get('NPROCS', '1')
# Figure out how setuptools wants to name the extension file and where
# it wants to place it.
target = os.path.abspath(self.get_ext_fullpath('libQasm._libQasm'))
cqasm_target = os.path.abspath(self.get_ext_fullpath('cqasm._cqasm'))
# Build the Python module and install it into module_dir.
if not os.path.exists(cbuild_dir):
os.makedirs(cbuild_dir)
with local.cwd(cbuild_dir):
build_type = os.environ.get('LIBQASM_BUILD_TYPE', 'Release')
cmd = (local['cmake'][root_dir]
['-DCMAKE_INSTALL_PREFIX=' + prefix_dir]
['-DLIBQASM_BUILD_PYTHON=YES']
['-DLIBQASM_PYTHON_DIR=' + os.path.dirname(target)]
['-DLIBQASM_CQASM_PYTHON_DIR=' + os.path.dirname(cqasm_target)]
['-DLIBQASM_PYTHON_EXT=' + os.path.basename(target)]
# The Python library needs the compatibility headers.
['-DLIBQASM_COMPAT=YES']
# Make sure CMake uses the Python installation corresponding
# with the the Python version we're building with now.
['-DPYTHON_EXECUTABLE=' + sys.executable]
# (ab)use static libs for the intermediate libraries to avoid
# dealing with R(UN)PATH nonsense on Linux/OSX as much as
# possible.
['-DBUILD_SHARED_LIBS=NO']
# Build type can be set using an environment variable.
['-DCMAKE_BUILD_TYPE=' + build_type]
)
# Run cmake configuration.
cmd & FG
# Do the build with the given number of parallel threads.
build_cmd = local['cmake']['--build']['.']['--config'][build_type]
cmd = build_cmd
if nprocs != '1':
try:
parallel_supported = tuple(local['cmake']('--version').split('\n')[0].split()[-1].split('.')) >= (3, 12)
except:
parallel_supported = False
if parallel_supported:
cmd = cmd['--parallel'][nprocs]
elif not sys.platform.startswith('win'):
cmd = cmd['--']['-j'][nprocs]
cmd & FG
# Do the install.
try:
# install target for makefiles
build_cmd['--target']['install'] & FG
except ProcessExecutionError:
# install target for MSVC
build_cmd['--target']['INSTALL'] & FG
class build(_build):
def initialize_options(self):
_build.initialize_options(self)
self.build_base = os.path.relpath(build_dir)
def run(self):
# Make sure the extension is built before the Python module is "built",
# otherwise SWIG's generated module isn't included.
# See https://stackoverflow.com/questions/12491328
self.run_command('build_ext')
_build.run(self)
class install(_install):
def run(self):
# See https://stackoverflow.com/questions/12491328
self.run_command('build_ext')
_install.run(self)
class bdist(_bdist):
def finalize_options(self):
_bdist.finalize_options(self)
self.dist_dir = os.path.relpath(dist_dir)
class bdist_wheel(_bdist_wheel):
def run(self):
if platform.system() == "Darwin":
os.environ['MACOSX_DEPLOYMENT_TARGET'] = '10.10'
_bdist_wheel.run(self)
impl_tag, abi_tag, plat_tag = self.get_tag()
archive_basename = "{}-{}-{}-{}".format(self.wheel_dist_name, impl_tag, abi_tag, plat_tag)
wheel_path = os.path.join(self.dist_dir, archive_basename + '.whl')
if platform.system() == "Darwin":
from delocate.delocating import delocate_wheel
delocate_wheel(wheel_path)
class sdist(_sdist):
def finalize_options(self):
_sdist.finalize_options(self)
self.dist_dir = os.path.relpath(dist_dir)
class egg_info(_egg_info):
def initialize_options(self):
_egg_info.initialize_options(self)
self.egg_base = os.path.relpath(module_dir)
setup(
name='libqasm',
version=get_version(),
description='libQasm Python Package',
long_description=read('README.md'),
long_description_content_type = 'text/markdown',
author='QuTech, TU Delft',
url='https://github.com/QuTech-Delft/libqasm',
classifiers = [
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering'
],
packages = ['libQasm', 'cqasm', 'cqasm.v1'],
package_dir = {'': 'pybuild/module'},
# NOTE: the library build process is completely overridden to let CMake
# handle it; setuptools' implementation is horribly broken. This is here
# just to have the rest of setuptools understand that this is a Python
# module with an extension in it.
ext_modules = [
Extension('libQasm._libQasm', [])
],
cmdclass = {
'bdist': bdist,
'bdist_wheel': bdist_wheel,
'build_ext': build_ext,
'build': build,
'install': install,
'clean': clean,
'egg_info': egg_info,
'sdist': sdist,
},
setup_requires = [
'plumbum',
'delocate; platform_system == "Darwin"',
],
install_requires = [
'msvc-runtime; platform_system == "Windows"',
'numpy'
],
tests_require = [
'pytest'
],
zip_safe=False
)