Bump to 0.6.0.3

Fixed installation.
pull/73/head 0.6.0.3
Yuri Baburov 9 years ago
parent 24bb20c761
commit c51886d923

@ -14,7 +14,7 @@ if sys.platform == 'darwin':
setup( setup(
name="readability-lxml", name="readability-lxml",
version="0.6", version="0.6.0.3",
author="Yuri Baburov", author="Yuri Baburov",
author_email="burchik@gmail.com", author_email="burchik@gmail.com",
description="fast python port of arc90's readability tool", description="fast python port of arc90's readability tool",
@ -22,7 +22,7 @@ setup(
long_description=open("README").read(), long_description=open("README").read(),
license="Apache License 2.0", license="Apache License 2.0",
url="http://github.com/buriy/python-readability", url="http://github.com/buriy/python-readability",
packages=['readability'], packages=['readability', 'readability.compat'],
install_requires=[ install_requires=[
"chardet", "chardet",
lxml_requirement, lxml_requirement,
@ -32,6 +32,17 @@ setup(
"Environment :: Web Environment", "Environment :: Web Environment",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Topic :: Text Processing :: Indexing",
"Topic :: Utilities",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
], ],
) )

Loading…
Cancel
Save