forked from cvxpy/cvxpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
68 lines (57 loc) · 2.47 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
import builtins
import distutils.version
import os
import platform
import sys
import sysconfig
import setup.extensions as setup_extensions
import setup.versioning as setup_versioning
# BEFORE importing setuptools, remove MANIFEST. Otherwise it may not be
# properly updated when the contents of directories change (true for distutils,
# not sure about setuptools).
if os.path.exists('MANIFEST'):
os.remove('MANIFEST')
from setuptools import find_packages, setup
from setuptools.command.build_ext import build_ext
# The comment below is from the SciPy code which we adapted for cvxpy.
#
# This is a bit hackish: we are setting a global variable so that the main
# cvxpy __init__ can detect if it is being loaded by the setup routine, to
# avoid attempting to load components that aren't built yet. While ugly, it's
# a lot more robust than what was previously being used.
builtins.__CVXPY_SETUP__ = True
# inject numpy headers
class build_ext_cvxpy(build_ext):
def finalize_options(self) -> None:
build_ext.finalize_options(self)
# Prevent numpy from thinking it is still in its setup process:
builtins.__NUMPY_SETUP__ = False
import numpy
self.include_dirs.append(numpy.get_include())
# For mac, ensure extensions are built for macos 10.9 when compiling on a
# 10.9 system or above, overriding distutils behaviour which is to target
# the version that python was built for. This may be overridden by setting
# MACOSX_DEPLOYMENT_TARGET before calling setup.py. This behavior is
# motivated by Apple dropping support for libstdc++.
if sys.platform == 'darwin':
if 'MACOSX_DEPLOYMENT_TARGET' not in os.environ:
current_system = distutils.version.LooseVersion(platform.mac_ver()[0])
python_target = distutils.version.LooseVersion(
sysconfig.get_config_var('MACOSX_DEPLOYMENT_TARGET'))
if python_target < '10.9' and current_system >= '10.9':
os.environ['MACOSX_DEPLOYMENT_TARGET'] = '10.9'
setup_versioning.write_version_py()
VERSION = setup_versioning.VERSION
extensions = [setup_extensions.cvxcore, setup_extensions.sparsecholesky]
setup(
version=str(VERSION),
cmdclass={'build_ext': build_ext_cvxpy},
ext_modules=extensions if "PYODIDE" not in os.environ else [],
packages=find_packages(exclude=["doc*",
"examples*",
"cvxpy.performance_tests*"]),
zip_safe=False,
package_data={
'cvxpy': ['py.typed'],
},
)