forked from scastillo/siesta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (24 loc) · 795 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
__version__ = "0.5.1"
setup(
name='siesta',
version=__version__,
description='Sit back, relax and enjoy your python REST client',
author='Sebastián Castillo Builes',
author_email='[email protected]',
license='GPL',
keywords='REST RESTful API HTTP web service',
url="http://scastillo.github.com/siesta/",
long_description="""
Siesta is a client library to consume RESTful web services.
""",
packages=find_packages(),
install_requires = ['simplejson'],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
],
)