-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
74 lines (72 loc) · 2.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="ArticutAPI",
version="1.3.7",
author="Droidtown Linguistic Tech. Co. Ltd.",
author_email="[email protected]",
description="Articut NLP system provides not only finest results on Chinese word segmentaion (CWS), Part-of-Speech tagging (POS) and Named Entity Recogintion tagging (NER), but also the fastest online API service in the NLP industry.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Droidtown/ArticutAPI",
project_urls={
"Documentation": "https://api.droidtown.co/ArticutAPI/document/",
"Source": "https://github.com/Droidtown/ArticutAPI",
},
license="MIT License",
keywords=[
"NLP", "NLU", "CWS", "POS", "NER", "AI",
"artificial intelligence",
"Chinese word segmentation",
"computational linguistics",
"language",
"linguistics",
"graphQL",
"natural language",
"natural language processing",
"natural language understanding",
"parsing",
"part-of-speech-embdding",
"part-of-speech-tagger",
"pos-tagger",
"pos-tagging",
"syntax",
"tagging",
"text analytics"
],
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
"requests >= 2.25.1",
"emoji",
#"graphene"
],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
#"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Customer Service",
"Intended Audience :: Information Technology",
"Natural Language :: Chinese (Traditional)",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing",
"Topic :: Text Processing :: Linguistic",
"Topic :: Text Processing :: Markup :: XML",
"Topic :: Text Processing :: Filters",
"Topic :: Utilities",
],
python_requires=">=3.6.1",
)