python-readability/setup.py

27 lines
815 B
Python
Raw Normal View History

2010-09-16 12:01:13 +00:00
#!/usr/bin/env python
2011-06-29 20:50:51 +00:00
from setuptools import setup, find_packages
2010-09-15 00:18:35 +00:00
setup(
name="readability-lxml",
version="0.2.5",
author="Yuri Baburov",
author_email="burchik@gmail.com",
2011-07-01 17:24:15 +00:00
description="fast python port of arc90's readability tool",
test_suite = "tests.test_article_only",
2010-09-15 00:18:35 +00:00
long_description=open("README").read(),
license="Apache License 2.0",
url="http://github.com/buriy/python-readability",
package_dir={'': 'readability'},
packages=find_packages('readability', exclude=["*.tests", "*.tests.*"]),
install_requires=[
2012-01-07 20:48:46 +00:00
"chardet",
"lxml"
],
2010-09-15 00:18:35 +00:00
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
2010-09-15 00:18:35 +00:00
)