-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
30 lines (26 loc) · 1.15 KB
/
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
28
#!/usr/bin/python
from setuptools import setup, find_packages
setup(name='restfulie',
version='0.9.2',
description='Writing hypermedia aware resource based clients and servers',
author=' ',
author_email=' ',
url='http://restfulie.caelumobjects.com/',
long_description='CRUD through HTTP is a good step forward to using resources and becoming RESTful, another step further is to make use of hypermedia aware resources and Restfulie allows you to do it in Python.',
download_url='https://github.com/caelum/restfulie-py',
keywords='restfulie rest http hypermedia',
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python",
],
test_suite = "nose.collector",
install_requires= ['httplib2>=0.6.0'],
packages=find_packages(),
include_package_data=True,
)