-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (42 loc) · 1.41 KB
/
setup.py
File metadata and controls
44 lines (42 loc) · 1.41 KB
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
37
38
39
40
41
42
43
44
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
from soft_drf import __author__, __version__
setup(
name='soft_drf',
version=__version__,
description=(
'Mixins and templates to do scaffolding with '
'Django Rest Framework project.'
),
author=__author__,
author_email='angel.david.lagunas@gmail.com',
url='https://github.com/angellagunas/soft_drf',
download_url=(
'https://github.com/angellagunas/soft_drf/archive/{0}.tar.gz'.format(
__version__
)
),
install_requires=[
'Django==1.11.4',
'django-cors-headers==2.1.0',
'djangorestframework==3.6.4',
'djangorestframework-camel-case==0.2.0',
'djangorestframework-jwt==1.11.0',
'drf-nested-routers==0.90.0'
],
packages=find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)