mirror of
https://github.com/fxsjy/jieba.git
synced 2025-07-10 00:01:33 +08:00
12 lines
396 B
Python
12 lines
396 B
Python
from distutils.core import setup
|
|
setup(name='jieba',
|
|
version='0.28.3',
|
|
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/*']}
|
|
)
|