mirror of https://github.com/fxsjy/jieba.git
12 lines
370 B
Python
12 lines
370 B
Python
13 years ago
|
from distutils.core import setup
|
||
|
setup(name='JieBa',
|
||
|
version='0.1',
|
||
|
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/*']}
|
||
|
)
|