From 7151ac23fd2f2e04c69d1fb642081201c8a16ce6 Mon Sep 17 00:00:00 2001 From: ryanss Date: Mon, 12 Jan 2015 23:59:00 -0500 Subject: Add readability parsing for reading linked pages --- plugin/readability/setup.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 plugin/readability/setup.py (limited to 'plugin/readability/setup.py') diff --git a/plugin/readability/setup.py b/plugin/readability/setup.py new file mode 100755 index 0000000..a027449 --- /dev/null +++ b/plugin/readability/setup.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +from distutils.core import setup + + +setup( + name="python-readability", + author="Tim Cuthbertson", + author_email="tim3d.junk+github@gmail.com", + description="python port of arc90's readability bookmarklet", + long_description=open("README").read(), + license="Apache License 2.0", + url="http://github.com/gfxmonk/python-readability", + packages=[ + "readability", + ], + classifiers=[ + "Environment :: Web Environment", + "Intended Audience :: Developers", + "Operating System :: OS Independent", + "Programming Language :: Python", + ], +) -- cgit v1.2.3