-
-
Notifications
You must be signed in to change notification settings - Fork 239
/
setup.py
111 lines (84 loc) · 3.28 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
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
"""This setup.py is for the oxidized_importer Python extension module.
It should exist in the `python-oxidzed-importer` directory. But since
it needs to pull in sources from outside that directory and `pip` can
be opinionated about not allowing that, the file exists in the root
of the repository to work around this limitation.
"""
import distutils.command.build_ext
import distutils.extension
import os
import pathlib
import setuptools
import shutil
import subprocess
import sys
HERE = pathlib.Path(os.path.dirname(os.path.abspath(__file__)))
OXIDIZED_IMPORTER = HERE / "python-oxidized-importer"
class RustExtension(distutils.extension.Extension):
def __init__(self, name):
super().__init__(name, [])
self.depends.extend(
[OXIDIZED_IMPORTER / "Cargo.toml", OXIDIZED_IMPORTER / "src/lib.rs"]
)
def build(self, build_dir: pathlib.Path, get_ext_path_fn):
env = os.environ.copy()
env["PYO3_PYTHON"] = sys.executable
args = [
"cargo",
"build",
"--features",
"extension-module",
"--release",
"--target-dir",
str(build_dir),
]
subprocess.run(args, env=env, cwd=OXIDIZED_IMPORTER, check=True)
dest_path = pathlib.Path(get_ext_path_fn(self.name))
if os.name == "nt":
rust_lib_filename = "%s.dll" % self.name
elif sys.platform == "darwin":
rust_lib_filename = "lib%s.dylib" % self.name
else:
rust_lib_filename = "lib%s.so" % self.name
rust_lib = build_dir / "release" / rust_lib_filename
dest_path.parent.mkdir(parents=True, exist_ok=True)
shutil.copy2(rust_lib, dest_path)
class RustBuildExt(distutils.command.build_ext.build_ext):
def build_extension(self, ext):
assert isinstance(ext, RustExtension)
ext.build(
build_dir=pathlib.Path(os.path.abspath(self.build_temp)),
get_ext_path_fn=self.get_ext_fullpath,
)
def get_package_version():
with open(OXIDIZED_IMPORTER / "Cargo.toml", "r", encoding="utf-8") as fh:
for line in fh:
line = line.rstrip()
if line.startswith("version = "):
version = line[len('version = "') : -1]
if version.endswith("-pre"):
version = "%s.dev0" % version[:-4]
return version
raise Exception("could not resolve crate version")
with open(OXIDIZED_IMPORTER / "README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="oxidized_importer",
version=get_package_version(),
author="Gregory Szorc",
author_email="gregory.szorc@gmail.com",
url="https://github.com/indygreg/PyOxidizer",
description="Python importer implemented in Rust",
long_description=long_description,
license="MPL 2.0",
python_requires=">=3.8",
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Rust",
],
ext_modules=[RustExtension("oxidized_importer")],
cmdclass={"build_ext": RustBuildExt},
)