forked from QuTech-Delft/OpenQL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
127 lines (106 loc) · 3.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
import os
import re
from setuptools import setup
from shutil import copyfile
import subprocess
from sys import platform
rootDir = os.path.dirname(os.path.realpath(__file__))
srcDir = os.path.join(rootDir, "src")
buildDir = os.path.join(rootDir, "cbuild")
clibDir = os.path.join(buildDir, "swig")
nprocs = 1
env_var_nprocs = os.environ.get('NPROCS')
if (env_var_nprocs != None):
nprocs = int(env_var_nprocs)
print('Using {} processes for compilation'.format(nprocs))
if nprocs == 1:
print('For faster compilation by N processes, set environment variable NPROCS=N')
print('For example: NPROCS=4 python3 setup.py install --user')
if not os.path.exists(buildDir):
os.makedirs(buildDir)
os.chdir(buildDir)
if platform == "linux" or platform == "linux2":
print('Detected Linux OS, installing openql ... ')
cmd = 'cmake ..'
proc = subprocess.Popen(cmd, shell=True)
proc.communicate()
cmd = 'make -j{}'.format(nprocs)
proc = subprocess.Popen(cmd, shell=True)
proc.communicate()
clibname = "_openql.so"
elif platform == "darwin":
print('Detected OSX, installing openql ... ')
os.environ["MACOSX_DEPLOYMENT_TARGET"] = "10.10"
cmd = 'cmake ..'
proc = subprocess.Popen(cmd, shell=True)
proc.communicate()
cmd = 'make -j{}'.format(nprocs)
proc = subprocess.Popen(cmd, shell=True)
proc.communicate()
clibname = "_openql.so"
elif platform == "win32":
print('Detected Windows OS, installing openql ... ')
cmd = 'cmake -G "NMake Makefiles" ..'
proc = subprocess.Popen(cmd, shell=True)
proc.communicate()
# cmd = 'nmake /M/P{}'.format(nprocs)
cmd = 'nmake'
proc = subprocess.Popen(cmd, shell=True)
proc.communicate()
clibname = "_openql.pyd"
else:
print('Unknown/Unsupported OS !!!')
clib = os.path.join(clibDir, clibname)
swigDir = os.path.join(rootDir, "swig", "openql")
clibSwig = os.path.join(swigDir, clibname)
copyfile(clib, clibSwig)
copyfile(os.path.join(clibDir, "openql.py"),
os.path.join(swigDir, "openql.py"))
os.chdir(rootDir)
def get_version(verbose=0):
""" Extract version information from source code """
matcher = re.compile('[\t ]*#define[\t ]+OPENQL_(MAJOR|MINOR|PATCH)_VERSION[\t ]+(.*)')
openql_major_version = None
openql_minor_version = None
openql_patch_version = None
version = None
try:
with open(os.path.join(srcDir, 'version.h'), 'r') as f:
for ln in f:
m = matcher.match(ln)
if m:
version_val = int(m.group(2))
if m.group(1) == 'MAJOR':
openql_major_version = version_val
elif m.group(1) == 'MINOR':
openql_minor_version = version_val
else:
openql_patch_version = version_val
if ((openql_major_version is not None) and
(openql_minor_version is not None) and
(openql_patch_version is not None)):
version = '{}.{}.{}'.format(openql_major_version,
openql_minor_version,
openql_patch_version)
break;
except Exception as E:
print(E)
version = 'none'
if verbose:
print('get_version: %s' % version)
return version
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='openql',
version=get_version(),
description='OpenQL Python Package',
long_description=read('README.md'),
author='Nader Khammassi and Imran Ashraf',
author_email='[email protected], [email protected]',
url='https://github.com/QE-Lab/OpenQL',
license=read('LICENSE'),
packages=['openql'],
package_dir={'': 'swig'},
include_package_data=True,
package_data={'openql': [clibSwig]},
zip_safe=False)