From ea6afd3d490910a0021dc53ec59e47c045366623 Mon Sep 17 00:00:00 2001 From: Gilles Dartiguelongue Date: Sat, 2 Jun 2012 23:11:27 +0200 Subject: [PATCH] Make sure code is actually distributed --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 02251fc..e3e2212 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages 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", @@ -11,8 +11,7 @@ setup( 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"