-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (31 loc) · 1.03 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
import os,setuptools
with open("README.md","r",encoding="utf-8") as r:
long_description=r.read()
URL="https://github.com/KoichiYasuoka/GuwenCOMBO"
setuptools.setup(
name="guwencombo",
version="1.5.3",
description="Tokenizer POS-tagger and Dependency-parser for Classical Chinese",
long_description=long_description,
long_description_content_type="text/markdown",
url=URL,
author="Koichi Yasuoka",
author_email="[email protected]",
license="GPL",
keywords="NLP Chinese",
packages=setuptools.find_packages(),
install_requires=["udkundoku>=2.2.7","unidic_combo>=1.4.1"],
python_requires=">=3.6",
package_data={"guwencombo":["download/*.txt"]},
classifiers=[
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Text Processing :: Linguistic"
],
project_urls={
"COMBO-pytorch":"https://gitlab.clarin-pl.eu/syntactic-tools/combo",
"Source":URL,
"Tracker":URL+"/issues",
}
)