-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
setup.py
58 lines (52 loc) · 1.66 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# -*- coding: utf-8 -*-
"""
@author:XuMing([email protected])
@description:
"""
import sys
from setuptools import setup, find_packages
__version__ = None
exec(open('pycorrector/version.py').read())
if sys.version_info < (3,):
sys.exit('Sorry, Python3 is required for pycorrector.')
with open('README.md', 'r', encoding='utf-8') as f:
readme = f.read()
setup(
name='pycorrector',
version=__version__,
description='Chinese Text Error Corrector',
long_description=readme,
long_description_content_type='text/markdown',
author='XuMing',
author_email='[email protected]',
url='https://github.com/shibing624/pycorrector',
license="Apache 2.0",
zip_safe=False,
python_requires='>=3.6',
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Natural Language :: Chinese (Simplified)',
'Natural Language :: Chinese (Traditional)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: Linguistic',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
platforms=["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"],
keywords='pycorrector,correction,Chinese error correction,NLP',
install_requires=[
"jieba",
"pypinyin",
"transformers",
"datasets",
"numpy",
"pandas",
"six",
"loguru",
"pyahocorasick",
],
packages=find_packages(exclude=['tests']),
package_dir={'pycorrector': 'pycorrector'},
package_data={'pycorrector': ['*.*', 'data/*', 'data/en.json.gz', 'data/sighan2015_test.tsv']}
)