Update setup.py for finding the package correctly

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

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

Loading…
Cancel
Save