-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
33 lines (29 loc) · 1.01 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
from setuptools import setup
import pathlib
from charset_mnbvc.version import __version__
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="charset_mnbvc",
version=__version__,
description="本项目旨在对大量文本文件进行快速编码检测以辅助mnbvc语料集项目的数据清洗工作",
url="https://github.com/alanshi/charset_mnbvc",
author="Alan Shi",
author_email="alan.shi86@gmail.com",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"
],
packages=['charset_mnbvc'],
python_requires=">=3.7",
project_urls={ # Optional
"Bug Reports": "https://github.com/alanshi/charset_mnbvc/issues",
"Source": "https://github.com/alanshi/charset_mnbvc/",
},
install_requires=[
'faust-cchardet',
'tqdm'
],
)