blob: a027449204c91e89fc282b5da287e7e5550116ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/usr/bin/env python
from distutils.core import setup
setup(
name="python-readability",
author="Tim Cuthbertson",
author_email="tim3d.junk+github@gmail.com",
description="python port of arc90's readability bookmarklet",
long_description=open("README").read(),
license="Apache License 2.0",
url="http://github.com/gfxmonk/python-readability",
packages=[
"readability",
],
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
)
|