forked from alej0varas/django-registration-rest-framework
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
36 lines (32 loc) · 1.2 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
from distutils.core import setup
from setuptools import find_packages
from registration_api import __version__
setup(name='django-registration-rest-framework',
version=__version__,
packages=find_packages(),
requires=['djangorestframework'],
test_suite='tests.runtests.runtests',
install_requires=['djangorestframework'],
tests_require=[
'mock==1.0.1',
'Django>=1.6',
],
url='https://github.com/tucarga/django-registration-rest-framework',
author='Alejandro Varas',
author_email='[email protected]',
keywords='django registration rest framework',
description=('Clone of Django Resgistration flow for Django Rest '
'Framework',),
license='GPL',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Framework :: Django',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Natural Language :: English',
('License :: OSI Approved :: '
'GNU General Public License v3 or later (GPLv3+)'),
'Topic :: Software Development :: Libraries',
],
)