forked from wimglenn/djangorestframework-queryfields
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 979 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
30
31
32
33
34
from setuptools import setup
classifiers = [
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries',
'Intended Audience :: Developers',
'Framework :: Django',
]
with open("README.rst") as f:
long_description = f.read()
setup(
name='djangorestframework-queryfields',
version='1.1.0',
description='Serialize a partial subset of fields in the API',
long_description=long_description,
packages=['drf_queryfields'],
author='Wim Glenn',
author_email='hey@wimglenn.com',
license='MIT',
url='https://github.com/wimglenn/djangorestframework-queryfields',
classifiers=classifiers,
extras_require={
'dev': [
'pytest', 'pytest-cov', 'pytest-django', 'coveralls',
'django', 'djangorestframework', 'mock_django',
'setuptools', 'wheel', 'pytz',
]
},
)