Update setup.py for finding the package correctly

pull/19/head
Richard Harding 12 years ago
parent e9a5cbfe7f
commit 873562cfba

@ -10,7 +10,8 @@ setup(
long_description=open("README").read(),
license="Apache License 2.0",
url="http://github.com/buriy/python-readability",
packages=find_packages(),
package_dir={'': 'readability'},
packages=find_packages('readability', exclude=["*.tests", "*.tests.*"]),
install_requires=[
"chardet",
"lxml"

Loading…
Cancel
Save