-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 908 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (24 loc) · 908 Bytes
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
from setuptools import setup
setup(
name='djangorestframework-expander',
version='0.1.3',
description=('A serializer mixin for Django REST Framework to expand object representations inline'),
author='Ryan Pineo',
author_email='ryanpineo@gmail.com',
license='MIT',
url='https://github.com/silverlogic/djangorestframework-expander',
packages=['expander'],
install_requires=['djangorestframework'],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
]
)