From a5d47a11291cdc2c4367895f2aa776cdff8775bc Mon Sep 17 00:00:00 2001 From: Sean Brant Date: Tue, 14 Sep 2010 19:18:35 -0500 Subject: [PATCH] added setup.py --- setup.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..8933215 --- /dev/null +++ b/setup.py @@ -0,0 +1,21 @@ +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", + ], +)