forked from ydaniv/django-rest-assured
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 893 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
from setuptools import setup, find_packages
setup(
name='django-rest-assured',
version='0.2.0',
description='Django REST Assured instantly test-covers your Django REST Framework based API.',
url='https://github.com/ydaniv/django-rest-assured',
author='Yehonatan Daniv',
author_email='[email protected]',
license='BSD',
packages=find_packages(),
install_requires=["django>=1.6", "djangorestframework>=2.4.3"],
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
]
)