forked from iMerica/dj-rest-auth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
54 lines (48 loc) · 1.51 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
here = os.path.dirname(os.path.abspath(__file__))
f = open(os.path.join(here, 'README.md'))
long_description = f.read().strip()
f.close()
about = {}
with open('dj_rest_auth/__version__.py', 'r', encoding="utf8") as f:
exec(f.read(), about)
setup(
name='dj-rest-auth',
version=about['__version__'],
author='iMerica',
author_email='[email protected]',
url='http://github.com/iMerica/dj-rest-auth',
description='Authentication and Registration in Django Rest Framework',
license='MIT',
packages=find_packages(),
long_description=long_description,
long_description_content_type='text/markdown',
keywords='django rest auth registration rest-framework django-registration api',
zip_safe=False,
install_requires=[
'Django>=3.2,<6.0',
'djangorestframework>=3.13.0',
],
extras_require={
'with_social': ['django-allauth>=0.56.0,<0.62.0'],
},
tests_require=[
'coveralls>=1.11.1',
'django-allauth>=0.57.0',
'djangorestframework-simplejwt==4.6.0',
'responses==0.12.1',
'unittest-xml-reporting==3.0.4',
],
test_suite='runtests.runtests',
include_package_data=True,
python_requires='>=3.8',
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)