-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (46 loc) · 1.51 KB
/
Copy pathsetup.py
File metadata and controls
50 lines (46 loc) · 1.51 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
# from __future__ import unicode_literals
__author__ = 'Tim Martin'
from setuptools import setup
version = '1.1.1.dev0'
setup(
author=__author__,
author_email='tim.martin@vertical-knowledge.com',
name='django-ripozo',
version=version,
packages=[
'django_ripozo',
'django_ripozo.migrations'
],
description=('Integrates ripozo with django for fast, '
'flexible Hypermedia, HATEOAS, and other REST apis'),
install_requires=[
'ripozo>=1.0.0',
'Django>=1.6',
'six'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django :: 1.6',
'Framework :: Django :: 1.7',
'Framework :: Django :: 1.8',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
],
tests_require=[
'mock',
'unittest2'
],
test_suite='django_ripozo_tests',
url='http://django-ripozo.readthedocs.org/'
)