pull/35/head
Galves, Miguel 11 years ago
parent e5ca0a3545
commit 9c9b09e274

@ -0,0 +1,25 @@
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="readability-lxml",
version="0.2.6.2",
author="Miguel Galves",
author_email="mgalves@gmail.com",
description="fast python port of arc90's readability tool",
test_suite = "tests.test_article_only",
long_description=open("README").read(),
license="Apache License 2.0",
url="http://github.com/mgalves/python-readability",
packages=['readability'],
install_requires=[
"chardet",
"lxml"
],
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
)
Loading…
Cancel
Save