forked from nowells/python-wellrested
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
23 lines (21 loc) · 760 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
from setuptools import setup
version = '0.1.1'
setup(
name='python-wellrested',
version=version,
description='A REST client providing a convenience wrapper over httplib2',
author='Nowell Strite',
author_email='[email protected]',
url='http://github.com/nowells/python-wellrested/',
packages=['wellrested', 'wellrested.connections'],
install_requires=['httplib2'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)