forked from chardet/chardet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·33 lines (28 loc) · 1.18 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
#!/usr/bin/env python
from setuptools import setup
from chardet import __version__
def readme():
with open('README.rst') as f:
return f.read()
setup(name='chardet',
version=__version__,
description='Universal encoding detector for Python 2 and 3',
long_description=readme(),
author='Mark Pilgrim',
author_email='mark@diveintomark.org',
maintainer='Ian Cordasco',
maintainer_email='graffatcolmingov@gmail.com',
url='https://github.com/erikrose/chardet',
license="LGPL",
keywords=['encoding', 'i18n', 'xml'],
classifiers=["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
("License :: OSI Approved :: GNU Library or Lesser General" +
" Public License (LGPL)"),
"Operating System :: OS Independent",
"Programming Language :: Python",
("Topic :: Software Development :: Libraries :: Python " +
"Modules"),
"Topic :: Text Processing :: Linguistic"],
packages=['chardet'],
entry_points={'console_scripts': ['chardetect = chardet.chardetect:main']})