2014-05-01 00:55:04 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import os
|
2018-08-22 07:12:28 +03:00
|
|
|
|
2020-03-01 08:56:21 +03:00
|
|
|
from setuptools import find_packages, setup
|
2014-05-01 00:55:04 +04:00
|
|
|
|
|
|
|
here = os.path.dirname(os.path.abspath(__file__))
|
2020-03-01 04:46:32 +03:00
|
|
|
f = open(os.path.join(here, 'README.md'))
|
2014-05-01 00:55:04 +04:00
|
|
|
long_description = f.read().strip()
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
2020-03-01 03:10:25 +03:00
|
|
|
name='dj-rest-auth',
|
2020-03-22 14:23:13 +03:00
|
|
|
version='0.2.0',
|
2020-03-01 04:46:32 +03:00
|
|
|
author='iMerica',
|
|
|
|
author_email='imichael@pm.me',
|
2020-03-02 01:42:28 +03:00
|
|
|
url='http://github.com/jazzband/dj-rest-auth',
|
2020-03-01 06:34:24 +03:00
|
|
|
description='Authentication and Registration in Django Rest Framework',
|
2014-05-01 00:55:04 +04:00
|
|
|
packages=find_packages(),
|
|
|
|
long_description=long_description,
|
2020-03-01 04:46:32 +03:00
|
|
|
long_description_content_type='text/markdown',
|
2014-05-01 00:55:04 +04:00
|
|
|
keywords='django rest auth registration rest-framework django-registration api',
|
|
|
|
zip_safe=False,
|
|
|
|
install_requires=[
|
2020-03-01 05:41:51 +03:00
|
|
|
'Django>=1.11',
|
2017-10-31 19:13:57 +03:00
|
|
|
'djangorestframework>=3.1.3',
|
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',
|
2020-03-11 13:22:52 +03:00
|
|
|
'djangorestframework-simplejwt>=4.4.0 ',
|
2020-03-07 03:01:31 +03:00
|
|
|
'coveralls>=1.11.1'
|
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,
|
2020-03-01 08:20:56 +03:00
|
|
|
python_requires='>=3.5',
|
2014-05-01 00:55:04 +04:00
|
|
|
classifiers=[
|
|
|
|
'Framework :: Django',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Intended Audience :: System Administrators',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Topic :: Software Development'
|
|
|
|
],
|
|
|
|
)
|