-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (29 loc) · 874 Bytes
/
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
import os,setuptools
with open("README.md","r",encoding="utf-8") as r:
long_description=r.read()
URL="https://github.com/KoichiYasuoka/IDSpiece"
setuptools.setup(
name="idspiece",
version="0.6.5",
description="Ideographic Tokenizer with CHISE-IDS",
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(),
python_requires=">=3.6",
classifiers=[
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Text Processing :: Linguistic"
],
project_urls={
"CHISE":"https://www.chise.org/ids/",
"Source":URL,
"Tracker":URL+"/issues",
}
)