Skip to content

Commit c51886d

Browse files
committed
Bump to 0.6.0.3
Fixed installation.
1 parent 24bb20c commit c51886d

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

Diff for: setup.py

+14-3
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414

1515
setup(
1616
name="readability-lxml",
17-
version="0.6",
17+
version="0.6.0.3",
1818
author="Yuri Baburov",
1919
author_email="[email protected]",
2020
description="fast python port of arc90's readability tool",
2121
test_suite = "tests.test_article_only",
2222
long_description=open("README").read(),
2323
license="Apache License 2.0",
2424
url="http://github.com/buriy/python-readability",
25-
packages=['readability'],
25+
packages=['readability', 'readability.compat'],
2626
install_requires=[
2727
"chardet",
2828
lxml_requirement,
@@ -32,6 +32,17 @@
3232
"Environment :: Web Environment",
3333
"Intended Audience :: Developers",
3434
"Operating System :: OS Independent",
35+
"Topic :: Text Processing :: Indexing",
36+
"Topic :: Utilities",
37+
"Topic :: Internet",
38+
"Topic :: Software Development :: Libraries :: Python Modules",
3539
"Programming Language :: Python",
36-
],
40+
"Programming Language :: Python :: 2",
41+
"Programming Language :: Python :: 2.6",
42+
"Programming Language :: Python :: 2.7",
43+
"Programming Language :: Python :: 3",
44+
"Programming Language :: Python :: 3.3",
45+
"Programming Language :: Python :: 3.4",
46+
47+
],
3748
)

0 commit comments

Comments
 (0)