mirror of https://github.com/fxsjy/jieba.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
400 B
Python
12 lines
400 B
Python
from distutils.core import setup
|
|
setup(name='jieba',
|
|
version='0.31.alpha',
|
|
description='Chinese Words Segementation Utilities',
|
|
author='Sun, Junyi',
|
|
author_email='ccnusjy@gmail.com',
|
|
url='http://github.com/fxsjy',
|
|
packages=['jieba'],
|
|
package_dir={'jieba':'jieba'},
|
|
package_data={'jieba':['*.*','finalseg/*','analyse/*','posseg/*']}
|
|
)
|