-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
43 lines (42 loc) · 1.35 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
import os,setuptools
with open("README.md","r",encoding="utf-8") as r:
long_description=r.read()
URL="https://github.com/KoichiYasuoka/esupar"
setuptools.setup(
name="esupar",
version="1.7.7",
description="Tokenizer POS-tagger and Dependency-parser with BERT/RoBERTa/DeBERTa models for Japanese and other languages",
long_description=long_description,
long_description_content_type="text/markdown",
url=URL,
author="Koichi Yasuoka",
author_email="[email protected]",
license="MIT",
keywords="NLP Japanese Korean Chinese Thai Vietnamese English German Serbian Coptic Ainu",
packages=setuptools.find_packages(),
install_requires=[
"supar>=1.1.4",
"transformers>=4.28.0",
"deplacy>=2.1.0"
],
python_requires=">=3.7",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Natural Language :: Japanese",
"Natural Language :: Korean",
"Natural Language :: Chinese (Simplified)",
"Natural Language :: Chinese (Traditional)",
"Natural Language :: Thai",
"Natural Language :: Vietnamese",
"Natural Language :: English",
"Natural Language :: German",
"Natural Language :: Serbian",
"Topic :: Text Processing :: Linguistic"
],
project_urls={
"Source":URL,
"Tracker":URL+"/issues",
}
)