You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
python-readability/setup.py

23 lines
618 B
Python

#!/usr/bin/env python
14 years ago
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",
],
)