version 0.3.3
support Python 3
This commit is contained in:
parent
8338ff9a8e
commit
c57f4233bc
1 changed files with 12 additions and 9 deletions
21
setup.py
21
setup.py
|
@ -59,18 +59,21 @@ setup(
|
||||||
author_email = 'yohihiro_dot_m_at_gmail_dot_com',
|
author_email = 'yohihiro_dot_m_at_gmail_dot_com',
|
||||||
url = r"https://github.com/PyYoshi/cChardet",
|
url = r"https://github.com/PyYoshi/cChardet",
|
||||||
description = 'Universal encoding detector. This library is faster than chardet.',
|
description = 'Universal encoding detector. This library is faster than chardet.',
|
||||||
long_description= """This library is high speed universal character encoding detector. - binding to charsetdetect.
|
long_description= """cChardet is high speed universal character encoding detector. - binding to charsetdetect.
|
||||||
This library is faster than chardet.
|
This library is faster than chardet.
|
||||||
""",
|
""",
|
||||||
version = '0.3.2',
|
version = '0.3.3',
|
||||||
license = 'MIT License',
|
license = 'MIT License',
|
||||||
classifiers = [ # http://pypi.python.org/pypi?:action=list_classifiers
|
classifiers = [
|
||||||
'Development Status :: 4 - Beta',
|
# http://pypi.python.org/pypi?:action=list_classifiers
|
||||||
'License :: OSI Approved :: MIT License',
|
'Development Status :: 4 - Beta',
|
||||||
'Programming Language :: Cython',
|
'License :: OSI Approved :: MIT License',
|
||||||
'Programming Language :: Python',
|
'Programming Language :: Cython',
|
||||||
'Topic :: Software Development :: Libraries',
|
'Programming Language :: Python',
|
||||||
],
|
'Topic :: Software Development :: Libraries',
|
||||||
|
'Programming Language :: Python :: 2',
|
||||||
|
'Programming Language :: Python :: 3',
|
||||||
|
],
|
||||||
keywords = [
|
keywords = [
|
||||||
'cython',
|
'cython',
|
||||||
'chardet',
|
'chardet',
|
||||||
|
|
Loading…
Reference in a new issue