forked from explosion/spacy-experimental
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
96 lines (83 loc) · 3.33 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
from setuptools import setup, Extension, find_packages
from distutils.command.build_ext import build_ext
from Cython.Build import cythonize
from Cython.Compiler import Options
import numpy
# Preserve `__doc__` on functions and classes
# http://docs.cython.org/en/latest/src/userguide/source_files_and_compilation.html#compiler-options
Options.docstrings = True
COMPILE_OPTIONS = {
"msvc": ["/Ox", "/EHsc"],
"mingw32": ["-O2", "-Wno-strict-prototypes", "-Wno-unused-function"],
"other": ["-O2", "-Wno-strict-prototypes", "-Wno-unused-function"],
}
LINK_OPTIONS = {"msvc": ["-std=c++11"], "mingw32": ["-std=c++11"], "other": []}
COMPILER_DIRECTIVES = {
"language_level": -3,
"embedsignature": True,
"annotation_typing": False,
}
# By subclassing build_extensions we have the actual compiler that will be used which is really known only after finalize_options
# http://stackoverflow.com/questions/724664/python-distutils-how-to-get-a-compiler-that-is-going-to-be-used
class build_ext_options:
def build_options(self):
for e in self.extensions:
e.extra_compile_args += COMPILE_OPTIONS.get(
self.compiler.compiler_type, COMPILE_OPTIONS["other"]
)
for e in self.extensions:
e.extra_link_args += LINK_OPTIONS.get(
self.compiler.compiler_type, LINK_OPTIONS["other"]
)
class build_ext_subclass(build_ext, build_ext_options):
def build_extensions(self):
build_ext_options.build_options(self)
build_ext.build_extensions(self)
def setup_package():
ext_modules = [
Extension(
"spacy_experimental.biaffine_parser.arc_predicter",
["spacy_experimental/biaffine_parser/arc_predicter.pyx"],
language="c++",
include_dirs=[numpy.get_include()],
extra_compile_args=["-std=c++11"],
),
Extension(
"spacy_experimental.biaffine_parser.arc_labeler",
["spacy_experimental/biaffine_parser/arc_labeler.pyx"],
language="c++",
include_dirs=[numpy.get_include()],
extra_compile_args=["-std=c++11"],
),
Extension(
"spacy_experimental.biaffine_parser.mst",
["spacy_experimental/biaffine_parser/mst.pyx"],
language="c++",
include_dirs=[numpy.get_include()],
extra_compile_args=["-std=c++11"],
),
Extension(
"spacy_experimental.char_tokenizer.char_tagger_tokenizer",
["spacy_experimental/char_tokenizer/char_tagger_tokenizer.pyx"],
language="c++",
include_dirs=[numpy.get_include()],
extra_compile_args=["-std=c++11"],
),
Extension(
"spacy_experimental.char_tokenizer.char_ner_tokenizer",
["spacy_experimental/char_tokenizer/char_ner_tokenizer.pyx"],
language="c++",
include_dirs=[numpy.get_include()],
extra_compile_args=["-std=c++11"],
),
]
ext_modules = cythonize(ext_modules, compiler_directives=COMPILER_DIRECTIVES)
setup(
name="spacy-experimental",
packages=find_packages(),
ext_modules=ext_modules,
cmdclass={"build_ext": build_ext_subclass},
package_data={"": ["*.pyx", "*.pxd", "*.pxi"]},
)
if __name__ == "__main__":
setup_package()