This repository has been archived by the owner on Oct 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (34 loc) · 1.48 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
29
30
31
32
33
34
35
from setuptools import setup
setup(
name='django-rest-easy',
packages=['rest_easy'],
version='0.2.1',
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4',
install_requires=[
'django>=1.8.0',
'djangorestframework>=3.0.0',
'setuptools>=36.0.1',
'six',
],
description='django-rest-easy is an extension to DRF providing QOL improvements to serializers and views.',
long_description='django-rest-easy enables:\n'
' * versioning serializers by model and schema,\n'
' * creating views and viewsets using model and schema,\n'
' * serializer override for a particular DRF verb, like create or update,\n'
' * scoping views\' querysets and viewsets by url kwargs or request object parameters.',
author='SMARTPAGER SYSTEMS INC. / Krzysztof Bujniewicz',
author_email='[email protected]',
url='https://github.com/TelmedIQ/django-rest-easy',
keywords=['django', 'DRF', 'rest framework', 'serializers', 'viewsets'],
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
)