2 Star 3 Fork 2

XIANRicardoXIAN / HarvestText

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='harvesttext',
author="blmoistawinde",
author_email="1840962220@qq.com",
version="0.7.3.1",
license='MIT',
keywords='NLP, tokenizing, entity linking, sentiment analysis, text cleaning',
url='https://github.com/blmoistawinde/HarvestText',
long_description=open('README.md', encoding="utf-8").read(),
long_description_content_type="text/markdown",
packages = find_packages(),
platforms=["all"],
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Natural Language :: Chinese (Simplified)',
'Natural Language :: Chinese (Traditional)',
'Programming Language :: Python :: 3',
'Topic :: Text Processing',
],
install_requires=open("requirements.txt", encoding='utf-8').read().split('\n'),
tests_require=['pytest'],
include_package_data = True,
package_data ={"harvesttext":["resources/*"],}
)
1
https://gitee.com/xianricardoxian/HarvestText.git
git@gitee.com:xianricardoxian/HarvestText.git
xianricardoxian
HarvestText
HarvestText
master

搜索帮助