django-auth-adfs 1.12.0__tar.gz → 1.14.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {django_auth_adfs-1.12.0 → django_auth_adfs-1.14.0}/LICENSE +2 -3
- {django_auth_adfs-1.12.0 → django_auth_adfs-1.14.0}/PKG-INFO +7 -10
- {django_auth_adfs-1.12.0 → django_auth_adfs-1.14.0}/django_auth_adfs/__init__.py +1 -1
- {django_auth_adfs-1.12.0 → django_auth_adfs-1.14.0}/pyproject.toml +8 -11
- {django_auth_adfs-1.12.0 → django_auth_adfs-1.14.0}/README.rst +0 -0
- {django_auth_adfs-1.12.0 → django_auth_adfs-1.14.0}/django_auth_adfs/backend.py +0 -0
- {django_auth_adfs-1.12.0 → django_auth_adfs-1.14.0}/django_auth_adfs/config.py +0 -0
- {django_auth_adfs-1.12.0 → django_auth_adfs-1.14.0}/django_auth_adfs/drf-urls.py +0 -0
- {django_auth_adfs-1.12.0 → django_auth_adfs-1.14.0}/django_auth_adfs/drf_urls.py +0 -0
- {django_auth_adfs-1.12.0 → django_auth_adfs-1.14.0}/django_auth_adfs/exceptions.py +0 -0
- {django_auth_adfs-1.12.0 → django_auth_adfs-1.14.0}/django_auth_adfs/middleware.py +0 -0
- {django_auth_adfs-1.12.0 → django_auth_adfs-1.14.0}/django_auth_adfs/rest_framework.py +0 -0
- {django_auth_adfs-1.12.0 → django_auth_adfs-1.14.0}/django_auth_adfs/signals.py +0 -0
- {django_auth_adfs-1.12.0 → django_auth_adfs-1.14.0}/django_auth_adfs/templates/django_auth_adfs/login_failed.html +0 -0
- {django_auth_adfs-1.12.0 → django_auth_adfs-1.14.0}/django_auth_adfs/urls.py +0 -0
- {django_auth_adfs-1.12.0 → django_auth_adfs-1.14.0}/django_auth_adfs/views.py +0 -0
@@ -1,13 +1,12 @@
|
|
1
1
|
Copyright (c) 2016, Joris Beckers
|
2
|
-
All rights reserved.
|
3
2
|
|
4
3
|
Redistribution and use in source and binary forms, with or without modification,
|
5
4
|
are permitted provided that the following conditions are met:
|
6
5
|
|
7
|
-
|
6
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
8
7
|
list of conditions and the following disclaimer.
|
9
8
|
|
10
|
-
|
9
|
+
2. Redistributions in binary form must reproduce the above copyright notice, this
|
11
10
|
list of conditions and the following disclaimer in the documentation and/or
|
12
11
|
other materials provided with the distribution.
|
13
12
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: django-auth-adfs
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.14.0
|
4
4
|
Summary: A Django authentication backend for Microsoft ADFS and AzureAD
|
5
5
|
Home-page: https://github.com/snok/django-auth-adfs
|
6
6
|
License: BSD-1-Clause
|
@@ -12,9 +12,6 @@ Maintainer-email: jonas-ks@hotmail.com
|
|
12
12
|
Requires-Python: >=3.8,<4.0
|
13
13
|
Classifier: Development Status :: 5 - Production/Stable
|
14
14
|
Classifier: Environment :: Web Environment
|
15
|
-
Classifier: Framework :: Django :: 3.2
|
16
|
-
Classifier: Framework :: Django :: 4.0
|
17
|
-
Classifier: Framework :: Django :: 4.1
|
18
15
|
Classifier: Framework :: Django :: 4.2
|
19
16
|
Classifier: Framework :: Django :: 5.0
|
20
17
|
Classifier: Intended Audience :: Developers
|
@@ -34,12 +31,12 @@ Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
|
|
34
31
|
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
|
35
32
|
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
36
33
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
37
|
-
Requires-Dist: PyJWT
|
38
|
-
Requires-Dist: cryptography
|
39
|
-
Requires-Dist: django (>=
|
40
|
-
Requires-Dist: django (>=4,<6) ; python_version >= "3.10"
|
41
|
-
Requires-Dist: requests
|
42
|
-
Requires-Dist: urllib3
|
34
|
+
Requires-Dist: PyJWT
|
35
|
+
Requires-Dist: cryptography
|
36
|
+
Requires-Dist: django (>=4.2,<5.0) ; python_version >= "3.8" and python_version < "3.10"
|
37
|
+
Requires-Dist: django (>=4.2,<6) ; python_version >= "3.10"
|
38
|
+
Requires-Dist: requests
|
39
|
+
Requires-Dist: urllib3
|
43
40
|
Project-URL: Documentation, https://django-auth-adfs.readthedocs.io/en/latest
|
44
41
|
Project-URL: Repository, https://github.com/snok/django-auth-adfs
|
45
42
|
Description-Content-Type: text/x-rst
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = 'django-auth-adfs'
|
3
|
-
version = "1.
|
3
|
+
version = "1.14.0" # Remember to also change __init__.py version
|
4
4
|
description = 'A Django authentication backend for Microsoft ADFS and AzureAD'
|
5
5
|
authors = ['Joris Beckers <joris.beckers@gmail.com>']
|
6
6
|
maintainers = ['Jonas Krüger Svensson <jonas-ks@hotmail.com>', 'Sondre Lillebø Gundersen <sondrelg@live.no>']
|
@@ -12,9 +12,6 @@ keywords = ['django', 'authentication', 'adfs', 'azure', 'ad', 'oauth2']
|
|
12
12
|
readme = 'README.rst'
|
13
13
|
classifiers = [
|
14
14
|
'Environment :: Web Environment',
|
15
|
-
'Framework :: Django :: 3.2',
|
16
|
-
'Framework :: Django :: 4.0',
|
17
|
-
'Framework :: Django :: 4.1',
|
18
15
|
'Framework :: Django :: 4.2',
|
19
16
|
'Framework :: Django :: 5.0',
|
20
17
|
'Intended Audience :: Developers',
|
@@ -39,20 +36,20 @@ classifiers = [
|
|
39
36
|
[tool.poetry.dependencies]
|
40
37
|
python = '^3.8'
|
41
38
|
django = [
|
42
|
-
{ version = '^
|
43
|
-
{ version = '^4 || ^5', python = '>=3.10' },
|
39
|
+
{ version = '^4.2', python = '>=3.8 <3.10' },
|
40
|
+
{ version = '^4.2 || ^5', python = '>=3.10' },
|
44
41
|
]
|
45
|
-
requests = '
|
46
|
-
urllib3 = '
|
47
|
-
cryptography = '
|
48
|
-
PyJWT = "
|
42
|
+
requests = '*'
|
43
|
+
urllib3 = '*'
|
44
|
+
cryptography = '*'
|
45
|
+
PyJWT = "*"
|
49
46
|
|
50
47
|
[tool.poetry.dev-dependencies]
|
51
48
|
responses = '*'
|
52
49
|
mock = '*'
|
53
50
|
coverage = '*'
|
54
51
|
djangorestframework = '*'
|
55
|
-
django-filter = "
|
52
|
+
django-filter = "*"
|
56
53
|
|
57
54
|
[build-system]
|
58
55
|
requires = ["poetry-core>=1.0.0"]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|