-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (24 loc) · 949 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "django_slumber",
version = "0.1.1",
author = "Kirit Saelensminde",
author_email = "[email protected]",
description = ("RESTful data connector for Django"),
license = "Boost Software License - Version 1.0 - August 17th, 2003",
keywords = "django rest data",
packages = ['slumber', 'slumber.operations', 'slumber_test'],
long_description = read('README.markdown'),
install_requires = ['simplejson', 'httplib2'],
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Django",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Boost Software License - Version 1.0 - August 17th, 2003",
],
)