-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
36 lines (35 loc) · 1.02 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
import os,setuptools
with open("README.md","r",encoding="utf-8") as r:
long_description=r.read()
URL="https://github.com/KoichiYasuoka/SuPar-Kanbun"
setuptools.setup(
name="suparkanbun",
version="1.5.4",
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="yasuoka@kanji.zinbun.kyoto-u.ac.jp",
license="MIT",
keywords="NLP Chinese",
packages=setuptools.find_packages(),
install_requires=[
"supar>=1.1.4",
"transformers>=4.0.1",
"spacy>=2.2.2",
"deplacy>=2.1.0"
],
python_requires=">=3.7",
package_data={"suparkanbun":["models/*.txt","models/*/*.txt","models/*/*.json"]},
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Text Processing :: Linguistic"
],
project_urls={
"Source":URL,
"Tracker":URL+"/issues",
}
)