-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
22 lines (19 loc) · 814 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
from setuptools import setup, find_packages
__author__ = 'Alexey Zankevich'
setup(
name="rest_framework_dyn_serializer",
version="1.3.1",
py_modules=['rest_framework_dyn_serializer'],
author="Alexey Zankevich",
author_email="[email protected]",
description="Dynamic serializer for Django REST framework",
keywords=['Django', 'REST', 'DRF'],
license="MIT",
platforms=['Platform Independent'],
url="https://github.com/Nepherhotep/django-rest-framework-dyn-serializer",
install_requires=['django>=1.9', 'djangorestframework>=3.3.0'],
classifiers=["Framework :: Django :: 1.9",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5"]
)