Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,15 @@

setup(
name="readability-lxml",
version="0.2.5",
version="0.2.5.1",
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",
package_dir={'': 'readability'},
packages=find_packages('readability', exclude=["*.tests", "*.tests.*"]),
packages=['readability'],
install_requires=[
"chardet",
"lxml"
Expand Down