-
Notifications
You must be signed in to change notification settings - Fork 50
/
setup.py
77 lines (73 loc) · 2.26 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
from setuptools import setup, Extension
from Cython.Build import cythonize
import numpy as np
numpy_include = np.get_include()
extra_compile_args = ["-O3", "-ffast-math"]
extra_link_args = []
define_macros = [("NPY_NO_DEPRECATED_API", "NPY_2_0_API_VERSION")]
extensions = [
Extension(
"wordllama.algorithms.splitter",
["wordllama/algorithms/splitter.pyx"],
extra_compile_args=extra_compile_args,
extra_link_args=extra_link_args,
),
Extension(
"wordllama.algorithms.deduplicate_helpers",
["wordllama/algorithms/deduplicate_helpers.pyx"],
include_dirs=[numpy_include],
define_macros=define_macros,
extra_compile_args=extra_compile_args,
extra_link_args=extra_link_args,
),
Extension(
"wordllama.algorithms.kmeans",
["wordllama/algorithms/kmeans.pyx"],
include_dirs=[numpy_include],
define_macros=define_macros,
extra_compile_args=extra_compile_args,
extra_link_args=extra_link_args,
),
Extension(
"wordllama.algorithms.splitter",
["wordllama/algorithms/splitter.pyx"],
include_dirs=[],
define_macros=[],
extra_compile_args=extra_compile_args,
extra_link_args=extra_link_args,
language="c++",
),
Extension(
"wordllama.algorithms.find_local_minima",
["wordllama/algorithms/find_local_minima.pyx"],
include_dirs=[numpy_include],
define_macros=define_macros,
extra_compile_args=extra_compile_args,
extra_link_args=extra_link_args,
language="c++",
),
Extension(
"wordllama.algorithms.vector_similarity",
["wordllama/algorithms/vector_similarity.pyx"],
include_dirs=[numpy_include],
define_macros=define_macros,
extra_compile_args=extra_compile_args,
extra_link_args=extra_link_args,
),
]
setup(
name="Embedding and lightweight NLP utility.",
use_scm_version=True,
setup_requires=["setuptools_scm"],
ext_modules=cythonize(
extensions,
compiler_directives={
"language_level": "3",
"boundscheck": False,
"wraparound": False,
},
annotate=True,
),
zip_safe=False,
install_requires=["numpy"],
)