forked from frnsys/python-readability
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (29 loc) · 845 Bytes
/
setup.py
File metadata and controls
executable file
·32 lines (29 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python
from setuptools import setup, find_packages
import sys
if sys.version < '3':
chardet_module = "chardet"
else:
chardet_module = "chardet2"
setup(
name="readability-lxml",
version="0.2.6.1.1",
author="Yuri Baburov",
author_email="burchik@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="https://github.com/audax/python-readability",
packages=['readability'],
install_requires=[
chardet_module,
"lxml"
],
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
)