加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 572 Bytes
一键复制 编辑 原始数据 按行查看 历史
Yener 提交于 2019-12-08 20:18 . update
#!/usr/bin/env python
# -*- coding:utf-8 -*-
from setuptools import setup
setup(name='jiagu',
version='0.2.2',
description='Jiagu Natural Language Processing',
author='Yener(Zheng Wenyu)',
author_email='help@ownthink.com',
url='https://github.com/ownthink/Jiagu',
license='MIT',
packages=['jiagu'],
package_dir={'jiagu': 'jiagu'},
package_data={'jiagu': ['*.*', 'cluster/*', 'data/*', 'model/*',
'normal/*', 'segment/*', 'segment/dict/*','segment/model/*',
'sentiment/*', 'sentiment/model/*', 'topic/*']}
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化