8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b6a2d3 commit a5d47a1Copy full SHA for a5d47a1
setup.py
@@ -0,0 +1,21 @@
1
+from distutils.core import setup
2
+
3
4
+setup(
5
+ name="python-readability",
6
+ author="Tim Cuthbertson",
7
+ author_email="tim3d.junk+github@gmail.com",
8
+ description="python port of arc90's readability bookmarklet",
9
+ long_description=open("README").read(),
10
+ license="Apache License 2.0",
11
+ url="http://github.com/gfxmonk/python-readability",
12
+ packages=[
13
+ "readability",
14
+ ],
15
+ classifiers=[
16
+ "Environment :: Web Environment",
17
+ "Intended Audience :: Developers",
18
+ "Operating System :: OS Independent",
19
+ "Programming Language :: Python",
20
21
+)
0 commit comments