-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
57 lines (48 loc) · 1.7 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
"""Build cython files included in the project.
This module is called by poetry during the installation process."""
import os
import sys
do_build = False
# See if Cython is installed
try:
from Cython.Build import cythonize
# Cython is installed.
# We only support building for linux.
if sys.platform.startswith("linux"):
do_build = True
# Do nothing if Cython is not available
except ImportError:
pass
if not do_build:
# Got to provide this function. Otherwise, poetry will fail
print("Cython is not or installed or different platform from linux. Skipping build.", file=sys.stderr)
def build(setup_kwargs):
pass
else:
import numpy
from setuptools import Extension, setup
# gcc arguments hack: enable optimizations
os.environ["CFLAGS"] = "-O3"
# Build
setup(
ext_modules=cythonize(
module_list=[
Extension(
name="greynirseq.nicenlp.utils.constituency.chart_parser",
sources=["src/greynirseq/nicenlp/utils/constituency/chart_parser.pyx"],
language="c++",
extra_compile_args=["-fopenmp"],
extra_link_args=["-fopenmp"],
include_dirs=[numpy.get_include()],
),
Extension(
name="greynirseq.nicenlp.utils.constituency.tree_dist",
sources=["src/greynirseq/nicenlp/utils/constituency/tree_dist.pyx"],
language="c++",
extra_compile_args=["-fopenmp"],
extra_link_args=["-fopenmp"],
include_dirs=[numpy.get_include()],
),
]
)
)