forked from pennersr/django-allauth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
81 lines (74 loc) · 2.25 KB
/
setup.cfg
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[metadata]
name = django-allauth
version = attr: allauth.__version__
url = https://allauth.org
author = Raymond Penners
author_email = [email protected]
description = Integrated set of Django applications addressing authentication, registration, account management as well as 3rd party (social) account authentication.
long_description = file: README.rst
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Topic :: Software Development :: Libraries :: Python Modules
Environment :: Web Environment
Topic :: Internet
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Framework :: Django
Framework :: Django :: 3.2
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Framework :: Django :: 4.2
Framework :: Django :: 5.0
project_urls =
Documentation = https://docs.allauth.org/en/latest/
Changelog = https://github.com/pennersr/django-allauth/blob/main/ChangeLog.rst
Source = https://github.com/pennersr/django-allauth
Tracker = https://github.com/pennersr/django-allauth/issues
Donate = https://github.com/sponsors/pennersr
[options]
python_requires = >=3.7
packages = find:
include_package_data = true
zip_safe = false
tests_require =
Pillow >= 9.0
pytest >= 7.4
pytest-django >= 4.5.2
install_requires =
Django >= 3.2
python3-openid >= 3.0.8
requests-oauthlib >= 0.3.0
requests >= 2.0.0
pyjwt[crypto] >= 1.7
[options.extras_require]
saml = python3-saml>=1.15.0,<2.0.0
mfa =
qrcode >= 7.0.0
[options.packages.find]
exclude =
examples
[isort]
indent=4
combine_star=1
combine_as_imports=1
include_trailing_comma=1
multi_line_output=3
lines_after_imports=2
known_django=django
extra_standard_library=types,requests
known_first_party=allauth
sections=FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
[flake8]
max-line-length = 88
# Black
ignore = E203, W503, E501, E231