-
Notifications
You must be signed in to change notification settings - Fork 274
/
setup.py
202 lines (187 loc) · 5.92 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
# -*- coding: utf-8 -*-
# SPDX-FileCopyrightText: 2016-2024 PyThaiNLP Project
# SPDX-License-Identifier: Apache-2.0
"""
Setup script for PyThaiNLP.
https://github.com/PyThaiNLP/pythainlp
"""
from setuptools import find_packages, setup
LONG_DESC = """
![PyThaiNLP Logo](https://avatars0.githubusercontent.com/u/32934255?s=200&v=4)
PyThaiNLP is a Python library for Thai natural language processing.
The library provides functions like word tokenization, part-of-speech tagging,
transliteration, soundex generation, spell checking, and
date and time parsing/formatting.
Website: [pythainlp.github.io](https://pythainlp.org/)
# Install
For stable version:
```sh
pip install pythainlp
```
For development version:
```sh
pip install --upgrade --pre pythainlp
```
Some functionalities, like named-entity recognition, require extra packages.
See https://github.com/PyThaiNLP/pythainlp for installation options.
"""
requirements = [
"backports.zoneinfo; python_version<'3.9'",
"requests>=2.22.0",
"tzdata; sys_platform == 'win32'",
]
extras = {
"abbreviation": ["khamyo>=0.2.0"],
"attacut": ["attacut>=1.0.6"],
"benchmarks": ["PyYAML>=5.3.1", "numpy>=1.22", "pandas>=0.24"],
"coreference_resolution": [
"fastcoref>=2.1.5",
"spacy>=3.0",
],
"dependency_parsing": [
"spacy_thai>=0.7.1",
"transformers>=4.22.1",
"ufal.chu-liu-edmonds>=1.0.2",
],
"el": ["multiel>=0.5"],
"esupar": [
"esupar>=1.3.8",
"numpy",
"transformers>=4.22.1",
],
"generate": ["fastai<2.0"],
"icu": ["pyicu>=2.3"],
"ipa": ["epitran>=1.1"],
"ml": ["numpy>=1.22", "torch>=1.0.0"],
"mt5": ["sentencepiece>=0.1.91", "transformers>=4.6.0"],
"nlpo3": ["nlpo3>=1.2.2"],
"onnx": ["numpy>=1.22", "onnxruntime>=1.10.0", "sentencepiece>=0.1.91"],
"oskut": ["oskut>=1.3"],
"sefr_cut": ["sefr_cut>=1.1"],
"spacy_thai": ["spacy_thai>=0.7.1"],
"spell": ["phunspell>=0.1.6", "spylls>=0.1.5", "symspellpy>=6.7.6"],
"ssg": ["ssg>=0.0.8"],
"textaugment": ["bpemb", "gensim>=4.0.0"],
"thai_nner": ["thai_nner"],
"thai2fit": ["emoji>=0.5.1", "gensim>=4.0.0", "numpy>=1.22"],
"thai2rom": ["numpy>=1.22", "torch>=1.0.0"],
"translate": [
"fairseq>=0.10.0",
"sacremoses>=0.0.41",
"sentencepiece>=0.1.91",
"torch>=1.0.0",
"transformers>=4.6.0",
],
"transformers_ud": [
"transformers>=4.22.1",
"ufal.chu-liu-edmonds>=1.0.2",
],
"wangchanberta": ["sentencepiece>=0.1.91", "transformers>=4.6.0"],
"wangchanglm": [
"pandas>=0.24",
"sentencepiece>=0.1.91",
"transformers>=4.6.0",
],
"word_approximation": ["panphon>=0.20.0"],
"wordnet": ["nltk>=3.3"],
"wsd": ["sentence-transformers>=2.2.2"],
"wtp": ["transformers>=4.6.0", "wtpsplit>=1.0.1"],
"wunsen": ["wunsen>=0.0.1"],
# Compact dependencies
"compact": ["numpy>=1.22", "pyicu>=2.3", "python-crfsuite>=0.9.7"],
# Full dependencies
"full": [
"PyYAML>=5.3.1",
"attacut>=1.0.4",
"bpemb>=0.3.2",
"emoji>=0.5.1",
"epitran>=1.1",
"fairseq>=0.10.0",
"fastai<2.0",
"fastcoref>=2.1.5",
"gensim>=4.0.0",
"khamyo>=0.2.0",
"nlpo3>=1.2.2",
"nltk>=3.3",
"numpy>=1.22",
"onnxruntime>=1.10.0",
"oskut>=1.3",
"pandas>=0.24",
"panphon>=0.20.0",
"phunspell>=0.1.6",
"pyicu>=2.3",
"sacremoses>=0.0.41",
"sefr_cut>=1.1",
"sentencepiece>=0.1.91",
"sentence-transformers>=2.2.2",
"spacy>=3.0",
"spacy_thai>=0.7.1",
"spylls>=0.1.5",
"ssg>=0.0.8",
"symspellpy>=6.7.6",
"thai_nner",
"torch>=1.0.0",
"transformers>=4.22.1",
"ufal.chu-liu-edmonds>=1.0.2",
"wtpsplit>=1.0.1",
"wunsen>=0.0.3",
],
}
setup(
name="pythainlp",
version="5.0.4",
description="Thai Natural Language Processing library",
long_description=LONG_DESC,
long_description_content_type="text/markdown",
author="PyThaiNLP",
author_email="[email protected]",
url="https://github.com/PyThaiNLP/pythainlp",
packages=find_packages(exclude=["tests", "tests.*"]),
test_suite="tests",
python_requires=">=3.7",
package_data={
"pythainlp": [
"corpus/*",
],
},
include_package_data=True,
install_requires=requirements,
extras_require=extras,
license="Apache-2.0",
zip_safe=False,
keywords=[
"pythainlp",
"NLP",
"natural language processing",
"text analytics",
"text processing",
"localization",
"computational linguistics",
"ThaiNLP",
"Thai NLP",
"Thai language",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: Thai",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing",
"Topic :: Text Processing :: General",
"Topic :: Text Processing :: Linguistic",
],
entry_points={
"console_scripts": [
"thainlp = pythainlp.__main__:main",
],
},
project_urls={
"Documentation": "https://pythainlp.org/docs/5.0/",
"Tutorials": "https://pythainlp.org/tutorials/",
"Source Code": "https://github.com/PyThaiNLP/pythainlp",
"Bug Tracker": "https://github.com/PyThaiNLP/pythainlp/issues",
},
)
# TODO: Check extras and decide whether or not additional data, like model files, should be downloaded