You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
python-readability/setup.py

32 lines
818 B
Python

#!/usr/bin/env python
from setuptools import setup, find_packages
import sys
if sys.platform == 'darwin':
lxml = "lxml<2.4"
else:
lxml = "lxml"
14 years ago
setup(
name="readability-lxml",
11 years ago
version="0.3.0.2",
author="Yuri Baburov",
author_email="burchik@gmail.com",
description="fast python port of arc90's readability tool",
test_suite = "tests.test_article_only",
14 years ago
long_description=open("README").read(),
license="Apache License 2.0",
url="http://github.com/buriy/python-readability",
packages=['readability'],
install_requires=[
"chardet",
lxml
],
14 years ago
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
14 years ago
)