forked from hellonlp/hellonlp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (30 loc) · 978 Bytes
/
setup.py
File metadata and controls
35 lines (30 loc) · 978 Bytes
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
# -*- coding:utf-8 -*-
from __future__ import print_function
from setuptools import setup, find_packages
import os
rootdir = os.path.abspath(os.path.dirname(__file__))
LONGDOC = open(os.path.join(rootdir, 'README.md'), encoding='utf-8').read()
setup(
name="hellonlp",
version="0.2.19",
author="Chen Ming",
author_email="chenming9109@163.com",
description="NLP tools",
long_description=LONGDOC,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/hellonlp/hellonlp",
packages=find_packages(),
install_requires=[
'numpy',
"requests",
"pygtrie",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords = 'NLP,Chinese word segementation',
package_data={'hellonlp':['ChineseWordSegmentation/data/*','ChineseWordSegmentation/dict/*.txt']}
)