forked from lancopku/pkuseg-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (46 loc) · 1.51 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
import setuptools
from distutils.extension import Extension
import numpy as np
from Cython.Build import cythonize
def setup_package():
long_description = "pkuseg-python"
extensions = [
Extension(
"pkuseg.inference",
["pkuseg/inference.pyx"],
include_dirs=[np.get_include()],
language="c++"
),
Extension(
"pkuseg.feature_extractor",
["pkuseg/feature_extractor.pyx"],
include_dirs=[np.get_include()],
),
Extension(
"pkuseg.postag.feature_extractor",
["pkuseg/postag/feature_extractor.pyx"],
include_dirs=[np.get_include()],
),
]
setuptools.setup(
name="pkuseg",
version="0.0.18",
author="Lanco",
author_email="[email protected]",
description="A small package for Chinese word segmentation",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/lancopku/pkuseg-python",
packages=setuptools.find_packages(),
package_data={"": ["*.txt*", "*.pkl", "*.npz"]},
classifiers=[
"Programming Language :: Python :: 3",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
],
install_requires=["numpy>=1.16.0"],
ext_modules=cythonize(extensions, annotate=True),
zip_safe=False,
)
if __name__ == "__main__":
setup_package()