-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (29 loc) · 985 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
31
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="pyVitk",
version="0.0.4",
author="Ted Chen",
author_email="[email protected]",
description="A python version Vietnamese text processing toolkit",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/u8621011/pyVitk",
download_url="https://github.com/u8621011/pyVitk/archive/v0.0.1",
packages=setuptools.find_packages(),
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
),
install_requires=[
'regex==2019.6.8',
'nltk==3.2.4',
'PyNLPl==1.1.8',
'beautifulsoup4==4.6.0',
'requests>=2.20.0',
'opencc-python-reimplemented==0.1.4'
],
include_package_data=True,
)