diff options
| author | ryanss | 2015-01-12 23:59:00 -0500 |
|---|---|---|
| committer | ryanss | 2015-01-12 23:59:00 -0500 |
| commit | 7151ac23fd2f2e04c69d1fb642081201c8a16ce6 (patch) | |
| tree | 244632b642feb987263b5afe9e0d5e0ef265dbd4 /plugin/readability/setup.py | |
| parent | 0e72d030addb30976089a98bbfaffdc0f10eacd7 (diff) | |
| download | vim-hn-7151ac23fd2f2e04c69d1fb642081201c8a16ce6.tar.gz | |
Add readability parsing for reading linked pages
Diffstat (limited to 'plugin/readability/setup.py')
| -rwxr-xr-x | plugin/readability/setup.py | 22 |
1 files changed, 22 insertions, 0 deletions
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", + ], +) |
