-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
106 lines (82 loc) · 2.57 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
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext
import os
cwd = os.path.abspath(os.path.dirname(__file__))
if not os.path.exists(os.path.join(cwd, 'PKG-INFO')):
try:
from Cython.Build import cythonize
USE_CYTHON = True
except ImportError:
USE_CYTHON = False
else:
USE_CYTHON = False
extra_compile_args = {
'msvc': ['/std:c++14'],
'unix': ['-std=c++11'],
}
extra_link_args = {
'msvc': [],
'unix': [],
}
class build_ext_compiler_check(build_ext):
def build_extensions(self):
compiler = self.compiler.compiler_type
compile_args = extra_compile_args[compiler]
for ext in self.extensions:
ext.extra_compile_args = compile_args
link_args = extra_compile_args[compiler]
for ext in self.extensions:
ext.extra_compile_args = link_args
build_ext.build_extensions(self)
def run(self):
import numpy
self.include_dirs.append(numpy.get_include())
build_ext.run(self)
if USE_CYTHON:
ext = '.pyx'
else:
ext = '.cpp'
extensions = [Extension(
name='neal.simulated_annealing',
sources=['./neal/simulated_annealing' + ext,
'./neal/src/cpu_sa.cpp'],
include_dirs=['./neal/src/'],
language='c++',
)]
if USE_CYTHON:
extensions = cythonize(extensions, language='c++')
packages = ['neal']
install_requires = ['dimod>=0.9.11,<1.13.0',
'numpy>=1.19.1,<2.0.0',
]
setup_requires = ['numpy>=1.19.1,<2.0.0,!=1.21.0,!=1.21.1']
classifiers = [
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
python_requires = '>=3.7'
# add __version__, __author__, __authoremail__, __description__ to this namespace
exec(open("./neal/package_info.py").read())
setup(
name='dwave-neal',
version=__version__,
author=__author__,
author_email=__authoremail__,
description=__description__,
long_description=open('README.rst').read(),
url='https://github.com/dwavesystems/dwave-neal',
license='Apache 2.0',
classifiers=classifiers,
packages=packages,
install_requires=install_requires,
ext_modules=extensions,
cmdclass={'build_ext': build_ext_compiler_check},
setup_requires=setup_requires,
python_requires=python_requires,
zip_safe=False
)