-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 700 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 700 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="python-readability-lxml",
version="0.2.3",
author="predatell",
author_email="burchik@gmail.com",
description="fast python port of arc90's readability tool",
long_description=open("README").read(),
license="Apache License 2.0",
url="http://github.com/predatell/python-readability-lxml",
packages=find_packages(),
install_requires=[
"chardet",
"lxml"
],
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
)