-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·36 lines (35 loc) · 1.12 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
36
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='drf-tools',
version="0.10.0",
url='https://github.com/seebass/drf-tools',
license='MIT',
description='Multiple extensions and test utilities for Django REST Framework 3',
author='Sebastian Bredehöft',
author_email='[email protected]',
packages=find_packages(exclude=['tests*']),
install_requires=[
'django>=2.0',
'djangorestframework>=3.10.3',
'drf-nested-fields>=0.9.5',
'drf-hal-json>=0.9.0',
'drf-enum-field>=0.9.0',
'drf-nested-routing>=0.10.0',
'django-filter==2.2.0',
'openpyxl>=2.6.3',
'chardet>=2.3.0'
],
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
]
)