forked from AresSC2/cython-extensions-sc2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.py
47 lines (37 loc) · 1.27 KB
/
build.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
import os
import shutil
from distutils.command.build_ext import build_ext
from distutils.core import Distribution, Extension
import numpy
from Cython.Build import cythonize
link_args = []
include_dirs = [numpy.get_include()]
libraries = []
def build():
source_files = []
for root, directories, files in os.walk("cython_extensions"):
for file in files:
if file.endswith("pyx"):
source_files.append(os.path.join(root, file))
extensions = cythonize(
Extension(
name="cython_extensions.bootstrap",
sources=source_files,
include_dirs=include_dirs,
),
compiler_directives={"binding": True, "language_level": 3},
)
distribution = Distribution({"name": "extended", "ext_modules": extensions})
distribution.package_dir = "extended"
cmd = build_ext(distribution)
cmd.ensure_finalized()
cmd.run()
# Copy built extensions back to the project
for output in cmd.get_outputs():
relative_extension = os.path.relpath(output, cmd.build_lib)
shutil.copyfile(output, relative_extension)
mode = os.stat(relative_extension).st_mode
mode |= (mode & 0o444) >> 2
os.chmod(relative_extension, mode)
if __name__ == "__main__":
build()