24 lines
635 B
Python
24 lines
635 B
Python
#!/usr/bin/env python
|
|
from distutils.core import setup
|
|
|
|
|
|
setup(
|
|
name="lxml-readability",
|
|
version="0.1dev",
|
|
author="Yuri Baburov",
|
|
author_email="burchik+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/buriy/python-readability",
|
|
packages=[
|
|
"lxml_readability",
|
|
],
|
|
classifiers=[
|
|
"Environment :: Web Environment",
|
|
"Intended Audience :: Developers",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python",
|
|
],
|
|
)
|