Skip to content

Commit 7ceb8e6

Browse files
committed
Change to automatically find packages
1 parent 8877754 commit 7ceb8e6

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

setup.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/usr/bin/env python
2-
from distutils.core import setup
3-
2+
from setuptools import setup, find_packages
43

54
setup(
65
name="lxml-readability",
@@ -11,9 +10,7 @@
1110
long_description=open("README").read(),
1211
license="Apache License 2.0",
1312
url="http://github.com/buriy/python-readability",
14-
packages=[
15-
"lxml_readability",
16-
],
13+
packages=find_packages(),
1714
classifiers=[
1815
"Environment :: Web Environment",
1916
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)