2014-05-01 00:55:04 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import os
|
2018-08-22 07:12:28 +03:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2014-05-01 00:55:04 +04:00
|
|
|
|
|
|
|
here = os.path.dirname(os.path.abspath(__file__))
|
2014-10-10 19:41:45 +04:00
|
|
|
f = open(os.path.join(here, 'README.rst'))
|
2014-05-01 00:55:04 +04:00
|
|
|
long_description = f.read().strip()
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='django-rest-auth',
|
2018-01-21 04:01:42 +03:00
|
|
|
version='0.9.3',
|
2014-05-01 00:55:04 +04:00
|
|
|
author='Sumit Chachra',
|
|
|
|
author_email='chachra@tivix.com',
|
|
|
|
url='http://github.com/Tivix/django-rest-auth',
|
|
|
|
description='Create a set of REST API endpoints for Authentication and Registration',
|
|
|
|
packages=find_packages(),
|
|
|
|
long_description=long_description,
|
|
|
|
keywords='django rest auth registration rest-framework django-registration api',
|
|
|
|
zip_safe=False,
|
|
|
|
install_requires=[
|
2017-10-31 19:13:57 +03:00
|
|
|
'Django>=1.8.0',
|
|
|
|
'djangorestframework>=3.1.3',
|
2015-01-09 14:05:14 +03:00
|
|
|
'six>=1.9.0',
|
2014-05-01 00:55:04 +04:00
|
|
|
],
|
2016-01-04 17:27:42 +03:00
|
|
|
extras_require={
|
2016-03-14 15:19:06 +03:00
|
|
|
'with_social': ['django-allauth>=0.25.0'],
|
2016-01-04 17:27:42 +03:00
|
|
|
},
|
|
|
|
tests_require=[
|
|
|
|
'responses>=0.5.0',
|
2017-03-21 05:26:44 +03:00
|
|
|
'django-allauth>=0.25.0',
|
2017-01-29 18:18:44 +03:00
|
|
|
'djangorestframework-jwt>=1.9.0',
|
2016-01-04 17:27:42 +03:00
|
|
|
],
|
2014-10-14 16:56:00 +04:00
|
|
|
test_suite='runtests.runtests',
|
2014-05-01 00:55:04 +04:00
|
|
|
include_package_data=True,
|
|
|
|
classifiers=[
|
|
|
|
'Framework :: Django',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Intended Audience :: System Administrators',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Topic :: Software Development'
|
|
|
|
],
|
|
|
|
)
|