Skip to content

Commit

Permalink
Bump to 0.6.0.3
Browse files Browse the repository at this point in the history
Fixed installation.
  • Loading branch information
buriy committed Jul 27, 2015
1 parent 24bb20c commit c51886d
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions setup.py
Expand Up @@ -14,15 +14,15 @@

setup(
name="readability-lxml",
version="0.6",
version="0.6.0.3",
author="Yuri Baburov",
author_email="burchik@gmail.com",
description="fast python port of arc90's readability tool",
test_suite = "tests.test_article_only",
long_description=open("README").read(),
license="Apache License 2.0",
url="http://github.com/buriy/python-readability",
packages=['readability'],
packages=['readability', 'readability.compat'],
install_requires=[
"chardet",
lxml_requirement,
Expand All @@ -32,6 +32,17 @@
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Text Processing :: Indexing",
"Topic :: Utilities",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"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",

],
)

0 comments on commit c51886d

Please sign in to comment.