1 Star 0 Fork 7

笨笨陈 / xmnlp

forked from Gitee 极速下载 / xmnlp 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.73 KB
一键复制 编辑 原始数据 按行查看 历史
SeanLee97 提交于 2022-02-20 17:42 . Bump version: 0.4.1 → 0.5.0
# -*- coding: utf-8 -*-
# -------------------------------------------#
# author: sean lee #
# email: xmlee97@gmail.com #
# -------------------------------------------#
from setuptools import setup, find_packages
__version__ = '0.5.0'
long_description = open('README.md', encoding='utf-8').read()
with open('requirements.txt', encoding='utf-8') as f:
requirements = [l for l in f.read().splitlines() if l]
with open('dev-requirements.txt', encoding='utf-8') as f:
test_requirements = [l for l in f.read().splitlines() if l][1:]
setup(
name='xmnlp',
version=__version__,
description='A Lightweight Chinese Natural Language Processing Toolkit',
long_description_content_type="text/markdown",
long_description=long_description,
keywords='chinese segmentation,chinese postager,chinese spell check,pinyin,chinese radical',
author='sean lee',
author_email='xmlee97@gmail.com',
license='Apache 2.0 License',
platforms=['all'],
url='https://github.com/SeanLee97/xmnlp',
packages=find_packages(exclude=('test*', )),
package_data={'': ['*.txt', '*.pickle']},
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Text Processing',
'Topic :: Text Processing :: Indexing',
'Topic :: Text Processing :: Linguistic',
],
install_requires=requirements,
tests_require=test_requirements,
)
Python
1
https://gitee.com/c_3into1_chenrx/xmnlp.git
git@gitee.com:c_3into1_chenrx/xmnlp.git
c_3into1_chenrx
xmnlp
xmnlp
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891