forked from seebass/drf-nested-routing
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (28 loc) · 931 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
28
29
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='drf-nested-routing',
version="0.9.5",
url='https://github.com/seebass/drf-nested-routing',
license='MIT',
description='Nested routing extension for Django REST Framework 3',
author='Sebastian Bredehöft',
author_email='[email protected]',
packages=find_packages(exclude=['tests*']),
install_requires=[
'django>=1.6',
'djangorestframework>=3.0.0',
],
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
]
)