From 7ceb8e6d7b39cb25538143b5bb40af925071eea2 Mon Sep 17 00:00:00 2001 From: Jerry Charumilind Date: Wed, 29 Jun 2011 13:50:51 -0700 Subject: [PATCH] Change to automatically find packages --- setup.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 84aa8b7..5f03288 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,5 @@ #!/usr/bin/env python -from distutils.core import setup - +from setuptools import setup, find_packages setup( name="lxml-readability", @@ -11,9 +10,7 @@ setup( long_description=open("README").read(), license="Apache License 2.0", url="http://github.com/buriy/python-readability", - packages=[ - "lxml_readability", - ], + packages=find_packages(), classifiers=[ "Environment :: Web Environment", "Intended Audience :: Developers",