-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
24 lines (22 loc) · 831 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
from setuptools import setup
readme = open('README.rst').read()
setup(name='drf_dynamic_fields',
version='0.4.0',
description='Dynamically return subset of Django REST Framework serializer fields',
author='Danilo Bargen',
author_email='[email protected]',
url='https://github.com/dbrgn/drf-dynamic-fields',
packages=['drf_dynamic_fields'],
zip_safe=True,
include_package_data=True,
license='MIT',
keywords='drf restframework rest_framework django_rest_framework serializers',
long_description=readme,
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Framework :: Django',
'Environment :: Web Environment',
],
)