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(
|
2011-06-30 04:51:58 +00:00
|
|
|
name="readability-lxml",
|
2012-04-17 17:40:25 +00:00
|
|
|
version="0.2.5",
|
2011-06-26 06:14:01 +00:00
|
|
|
author="Yuri Baburov",
|
2011-06-30 04:51:58 +00:00
|
|
|
author_email="burchik@gmail.com",
|
2011-07-01 17:24:15 +00:00
|
|
|
description="fast python port of arc90's readability tool",
|
2012-04-17 04:38:36 +00:00
|
|
|
test_suite = "tests.test_article_only",
|
2010-09-15 00:18:35 +00:00
|
|
|
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",
|
2012-04-17 17:35:54 +00:00
|
|
|
package_dir={'': 'readability'},
|
|
|
|
packages=find_packages('readability', exclude=["*.tests", "*.tests.*"]),
|
2011-06-29 21:00:30 +00:00
|
|
|
install_requires=[
|
2012-01-07 20:48:46 +00:00
|
|
|
"chardet",
|
|
|
|
"lxml"
|
2011-06-29 21:00:30 +00:00
|
|
|
],
|
2010-09-15 00:18:35 +00:00
|
|
|
classifiers=[
|
|
|
|
"Environment :: Web Environment",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python",
|
2011-06-29 21:00:30 +00:00
|
|
|
],
|
2010-09-15 00:18:35 +00:00
|
|
|
)
|