You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

setup.py 572 B

6 years ago
5 years ago
6 years ago
5 years ago
6 years ago
1234567891011121314151617
  1. #!/usr/bin/env python
  2. # -*- coding:utf-8 -*-
  3. from setuptools import setup
  4. setup(name='jiagu',
  5. version='0.2.3',
  6. description='Jiagu Natural Language Processing',
  7. author='Yener(Zheng Wenyu)',
  8. author_email='help@ownthink.com',
  9. url='https://github.com/ownthink/Jiagu',
  10. license='MIT',
  11. packages=['jiagu'],
  12. package_dir={'jiagu': 'jiagu'},
  13. package_data={'jiagu': ['*.*', 'cluster/*', 'data/*', 'model/*',
  14. 'normal/*', 'segment/*', 'segment/dict/*','segment/model/*',
  15. 'sentiment/*', 'sentiment/model/*', 'topic/*']}
  16. )

Jiagu使用大规模语料训练而成。将提供中文分词、词性标注、命名实体识别、情感分析、知识图谱关系抽取、关键词抽取、文本摘要、新词发现、情感分析、文本聚类等常用自然语言处理功能。参考了各大工具优缺点制作,将Jiagu回馈给大家