forked from mamba-org/mamba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
199 lines (163 loc) · 5.9 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
# Copyright (c) 2019, QuantStack and Mamba Contributors
#
# Distributed under the terms of the BSD 3-Clause License.
#
# The full license is in the file LICENSE, distributed with this software.
# -*- coding: utf-8 -*-
import os
import sys
import setuptools
from setuptools import Extension, setup
from setuptools.command.build_ext import build_ext
here = os.path.dirname(os.path.abspath(__file__))
version_ns = {}
with open(os.path.join(here, "mamba", "_version.py")) as f:
exec(f.read(), {}, version_ns)
__version__ = version_ns["__version__"]
with open("include/mamba/version.hpp.in", "r") as fi:
cpp_version_template = fi.read()
v = version_ns["version_info"]
cpp_version_template = (
cpp_version_template.replace("@MAMBA_VERSION_MAJOR@", str(v[0]))
.replace("@MAMBA_VERSION_MINOR@", str(v[1]))
.replace("@MAMBA_VERSION_PATCH@", str(v[2]))
)
with open("include/mamba/version.hpp", "w") as fo:
fo.write(cpp_version_template)
class get_pybind_include(object):
"""Helper class to determine the pybind11 include path
The purpose of this class is to postpone importing pybind11
until it is actually installed, so that the ``get_include()``
method can be invoked. """
def __init__(self, user=False):
self.user = user
def __str__(self):
import pybind11
return pybind11.get_include(self.user)
if sys.platform.startswith("win"):
libsolv_prefix = os.path.join(sys.prefix, "Library\\")
else:
libsolv_prefix = sys.prefix
print("Looking for libsolv in: ", libsolv_prefix)
extra_link_args = []
if sys.platform == "darwin":
extra_link_args = ["-Wl,-rpath", "-Wl,%s" % os.path.abspath(libsolv_prefix)]
library_dir = []
if sys.platform == "win32":
try:
conda_prefix = os.getenv("CONDA_PREFIX")
if not conda_prefix:
conda_prefix = os.getenv("MINICONDA")
if not conda_prefix:
raise RuntimeError("No conda prefix found")
library_dir = [os.path.join(conda_prefix, "Library\\lib\\")]
print("Looking for libsolv library in ", library_dir)
except Exception:
print("could not find conda prefix")
CURL_LIB = "libcurl"
CRYPTO_LIB = "libcrypto"
else:
CURL_LIB = "curl"
CRYPTO_LIB = "crypto"
libraries = ["archive", "solv", "solvext", "reproc++", CURL_LIB, CRYPTO_LIB]
if sys.platform == "win32":
libraries.append("advapi32")
ext_modules = [
Extension(
"mamba.mamba_api",
[
"src/py_interface.cpp",
"src/activation.cpp",
"src/channel.cpp",
"src/context.cpp",
"src/fetch.cpp",
"src/history.cpp",
"src/match_spec.cpp",
"src/output.cpp",
"src/package_handling.cpp",
"src/package_cache.cpp",
"src/package_paths.cpp",
"src/prefix_data.cpp",
"src/package_info.cpp",
"src/pool.cpp",
"src/query.cpp",
"src/repo.cpp",
"src/solver.cpp",
"src/shell_init.cpp",
"src/subdirdata.cpp",
"src/thread_utils.cpp",
"src/transaction.cpp",
"src/transaction_context.cpp",
"src/url.cpp",
"src/util.cpp",
"src/validate.cpp",
"src/version.cpp",
"src/link.cpp",
],
include_dirs=[
get_pybind_include(),
get_pybind_include(user=True),
os.path.join(libsolv_prefix, "include"),
"include/",
],
library_dirs=library_dir,
extra_link_args=extra_link_args,
libraries=libraries,
language="c++",
)
]
# As of Python 3.6, CCompiler has a `has_flag` method.
# cf http://bugs.python.org/issue26689
def has_flag(compiler, flagname):
"""Return a boolean indicating whether a flag name is supported on
the specified compiler.
"""
import tempfile
with tempfile.NamedTemporaryFile("w", suffix=".cpp") as f:
f.write("int main (int argc, char **argv) { return 0; }")
try:
compiler.compile([f.name], extra_postargs=[flagname])
except setuptools.distutils.errors.CompileError:
return False
return True
class BuildExt(build_ext):
"""A custom build extension for adding compiler-specific options."""
c_opts = {
"msvc": ["/EHsc", "/std:c++17", "/Ox", "/DNOMINMAX"],
"unix": ["-std=c++17", "-O3"],
}
def build_extensions(self):
ct = self.compiler.compiler_type
if sys.platform == "darwin":
self.c_opts["unix"] += ["-stdlib=libc++", "-mmacosx-version-min=10.7"]
if not has_flag(self.compiler, "-std=c++17"):
self.c_opts["unix"].remove("-std=c++17")
self.c_opts["unix"].append("-std=c++1z")
opts = self.c_opts.get(ct, [])
if ct == "unix":
opts.append('-DVERSION_INFO="%s"' % self.distribution.get_version())
if has_flag(self.compiler, "-fvisibility=hidden"):
opts.append("-fvisibility=hidden")
elif ct == "msvc":
opts.append('/DVERSION_INFO=\\"%s\\"' % self.distribution.get_version())
if sys.platform == "win32":
self.compiler.macros.append(("REPROCXX_SHARED", 1))
for ext in self.extensions:
ext.extra_compile_args = opts
build_ext.build_extensions(self)
setup(
name="mamba",
version=__version__,
author="Wolf Vollprecht",
author_email="[email protected]",
url="https://github.com/wolfv/mamba",
description="A fast, libsolv based solver and installer for conda packages.",
packages=["mamba"],
entry_points={"console_scripts": ["mamba = mamba.mamba:main"]},
long_description="A (hopefully faster) reimplementation of the slow bits of conda.",
ext_modules=ext_modules,
install_requires=["pybind11>=2.2"],
extras_require={"test": ["pytest"]},
cmdclass={"build_ext": BuildExt},
zip_safe=False,
)