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(
|
2011-06-26 06:14:01 +00:00
|
|
|
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",
|
2011-06-26 06:14:01 +00:00
|
|
|
url="http://github.com/buriy/python-readability",
|
2010-09-15 00:18:35 +00:00
|
|
|
packages=[
|
2011-06-26 06:14:01 +00:00
|
|
|
"lxml_readability",
|
2010-09-15 00:18:35 +00:00
|
|
|
],
|
|
|
|
classifiers=[
|
|
|
|
"Environment :: Web Environment",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
],
|
|
|
|
)
|