-
-
Notifications
You must be signed in to change notification settings - Fork 402
/
setup.py
executable file
·72 lines (58 loc) · 1.82 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
#!/usr/bin/python3
# Setup file for dulwich
# Copyright (C) 2008-2022 Jelmer Vernooij <jelmer@jelmer.uk>
import os
import sys
from setuptools import setup
from setuptools_rust import Binding, RustExtension
if sys.platform == "darwin" and os.path.exists("/usr/bin/xcodebuild"):
# XCode 4.0 dropped support for ppc architecture, which is hardcoded in
# distutils.sysconfig
import subprocess
p = subprocess.Popen(
["/usr/bin/xcodebuild", "-version"],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
env={},
)
out, err = p.communicate()
for line in out.splitlines():
line = line.decode("utf8")
# Also parse only first digit, because 3.2.1 can't be parsed nicely
if line.startswith("Xcode") and int(line.split()[1].split(".")[0]) >= 4:
os.environ["ARCHFLAGS"] = ""
tests_require = ["fastimport"]
if "__pypy__" not in sys.modules and sys.platform != "win32":
tests_require.extend(["gevent", "geventhttpclient", "setuptools>=17.1"])
optional = os.environ.get("CIBUILDWHEEL", "0") != "1"
rust_extensions = [
RustExtension(
"dulwich._objects",
"crates/objects/Cargo.toml",
binding=Binding.PyO3,
optional=optional,
),
RustExtension(
"dulwich._pack",
"crates/pack/Cargo.toml",
binding=Binding.PyO3,
optional=optional,
),
RustExtension(
"dulwich._diff_tree",
"crates/diff-tree/Cargo.toml",
binding=Binding.PyO3,
optional=optional,
),
]
# Ideally, setuptools would just provide a way to do this
if "--pure" in sys.argv:
sys.argv.remove("--pure")
rust_extensions = []
if "PURE" in os.environ:
rust_extensions = []
setup(
package_data={"": ["py.typed"]},
rust_extensions=rust_extensions,
tests_require=tests_require,
)