We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8877754 commit 7ceb8e6Copy full SHA for 7ceb8e6
setup.py
@@ -1,6 +1,5 @@
1
#!/usr/bin/env python
2
-from distutils.core import setup
3
-
+from setuptools import setup, find_packages
4
5
setup(
6
name="lxml-readability",
@@ -11,9 +10,7 @@
11
10
long_description=open("README").read(),
12
license="Apache License 2.0",
13
url="http://github.com/buriy/python-readability",
14
- packages=[
15
- "lxml_readability",
16
- ],
+ packages=find_packages(),
17
classifiers=[
18
"Environment :: Web Environment",
19
"Intended Audience :: Developers",
0 commit comments