-
Notifications
You must be signed in to change notification settings - Fork 259
/
setup.py
executable file
·55 lines (47 loc) · 1.8 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
#!/usr/bin/env python
from setuptools import find_packages, setup
# Get version without importing, which avoids dependency issues
def get_version():
import re
with open("chardet/version.py") as version_file:
return re.search(
r"""__version__\s+=\s+(['"])(?P<version>.+?)\1""", version_file.read()
).group("version")
def readme():
with open("README.rst") as f:
return f.read()
setup(
name="chardet",
version=get_version(),
description="Universal encoding detector for Python 2 and 3",
long_description=readme(),
author="Mark Pilgrim",
author_email="mark@diveintomark.org",
maintainer="Daniel Blanchard",
maintainer_email="dan.blanchard@gmail.com",
url="https://github.com/chardet/chardet",
license="LGPL",
keywords=["encoding", "i18n", "xml"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
(
"License :: OSI Approved :: GNU Library or Lesser General"
" Public License (LGPL)"
),
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
("Programming Language :: Python :: Implementation :: " "CPython"),
"Programming Language :: Python :: Implementation :: PyPy",
("Topic :: Software Development :: Libraries :: Python " "Modules"),
"Topic :: Text Processing :: Linguistic",
],
packages=find_packages(),
python_requires=">=3.6",
entry_points={"console_scripts": ["chardetect = chardet.cli.chardetect:main"]},
)