Skip to content

Commit a5d47a1

Browse files
committed
added setup.py
1 parent 2b6a2d3 commit a5d47a1

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Diff for: setup.py

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
from distutils.core import setup
2+
3+
4+
setup(
5+
name="python-readability",
6+
author="Tim Cuthbertson",
7+
author_email="[email protected]",
8+
description="python port of arc90's readability bookmarklet",
9+
long_description=open("README").read(),
10+
license="Apache License 2.0",
11+
url="http://github.com/gfxmonk/python-readability",
12+
packages=[
13+
"readability",
14+
],
15+
classifiers=[
16+
"Environment :: Web Environment",
17+
"Intended Audience :: Developers",
18+
"Operating System :: OS Independent",
19+
"Programming Language :: Python",
20+
],
21+
)

0 commit comments

Comments
 (0)