forked from mikejs/scrapelib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (25 loc) · 1001 Bytes
/
setup.py
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
#!/usr/bin/env python
from setuptools import setup
from scrapelib import __version__
long_description = open('README.rst').read()
setup(name="scrapelib",
version=__version__,
py_modules=['scrapelib'],
author="Michael Stephens",
author_email='mstephens@sunlightfoundation.com',
license="BSD",
url="http://github.com/mikejs/scrapelib",
long_description=long_description,
description="a library for scraping things",
platforms=["any"],
classifiers=["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
("Topic :: Software Development :: Libraries :: "
"Python Modules"),
],
install_requires=["httplib2 >= 0.6.0"],
)