python-readability/setup.py

23 lines
613 B
Python
Raw Normal View History

2010-09-16 12:01:13 +00:00
#!/usr/bin/env python
2010-09-15 00:18:35 +00:00
from distutils.core import setup
setup(
name="lxml-readability",
author="Yuri Baburov",
author_email="burchik+github@gmail.com",
2010-09-15 00:18:35 +00:00
description="python port of arc90's readability bookmarklet",
long_description=open("README").read(),
license="Apache License 2.0",
url="http://github.com/buriy/python-readability",
2010-09-15 00:18:35 +00:00
packages=[
"lxml_readability",
2010-09-15 00:18:35 +00:00
],
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
)