forked from thunlp/THULAC-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 1.05 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
#coding: utf-8
from setuptools import setup, find_packages
setup(
name = 'thulac',
# packages = ['thulac_test'], # this must be the same as the name above
version = '0.1.1',
description = 'A efficient Chinese text segmentation tool',
author = 'thunlp',
url = 'https://github.com/thunlp/THULAC-Python', # use the URL to the github repo
author_email = '[email protected]',
download_url = 'https://github.com/thunlp/THULAC-Python/archive/master.zip', # I'll explain this in a second
classifiers=[
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
# 'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
# 'Programming Language :: Python :: 3.2',
# 'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
keywords = ['segmentation'], # arbitrary keywords
packages = find_packages(),
package_data={'': ['*.txt', '*.dat', '*.bin', 'model_w']}
)