maquinaweb-shared-auth 0.2.34__tar.gz → 0.2.35__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.
Potentially problematic release.
This version of maquinaweb-shared-auth might be problematic. Click here for more details.
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/PKG-INFO +1 -1
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/maquinaweb_shared_auth.egg-info/PKG-INFO +1 -1
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/pyproject.toml +1 -1
- maquinaweb_shared_auth-0.2.35/shared_auth/__init__.py +6 -0
- maquinaweb_shared_auth-0.2.34/shared_auth/__init__.py +0 -21
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/README.md +0 -0
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/maquinaweb_shared_auth.egg-info/SOURCES.txt +0 -0
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/maquinaweb_shared_auth.egg-info/dependency_links.txt +0 -0
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/maquinaweb_shared_auth.egg-info/requires.txt +0 -0
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/maquinaweb_shared_auth.egg-info/top_level.txt +0 -0
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/setup.cfg +0 -0
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/setup.py +0 -0
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/shared_auth/abstract_models.py +0 -0
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/shared_auth/app.py +0 -0
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/shared_auth/authentication.py +0 -0
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/shared_auth/conf.py +0 -0
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/shared_auth/decorators.py +0 -0
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/shared_auth/exceptions.py +0 -0
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/shared_auth/fields.py +0 -0
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/shared_auth/managers.py +0 -0
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/shared_auth/middleware.py +0 -0
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/shared_auth/mixins.py +0 -0
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/shared_auth/models.py +0 -0
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/shared_auth/permissions.py +0 -0
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/shared_auth/router.py +0 -0
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/shared_auth/serializers.py +0 -0
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/shared_auth/storage_backend.py +0 -0
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/shared_auth/urls.py +0 -0
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/shared_auth/utils.py +0 -0
- {maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/shared_auth/views.py +0 -0
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "maquinaweb-shared-auth"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.35"
|
|
8
8
|
description = "Models read-only para autenticação compartilhada entre projetos Django."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.13"
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
"""
|
|
2
|
-
Biblioteca compartilhada para acesso aos models de autenticação
|
|
3
|
-
"""
|
|
4
|
-
|
|
5
|
-
__version__ = '1.0.0'
|
|
6
|
-
default_app_config = "shared_auth.app.SharedAuthConfig"
|
|
7
|
-
|
|
8
|
-
# Exportar utilitários para facilitar importação
|
|
9
|
-
from .utils import (
|
|
10
|
-
get_member_model,
|
|
11
|
-
get_organization_model,
|
|
12
|
-
get_token_model,
|
|
13
|
-
get_user_model,
|
|
14
|
-
)
|
|
15
|
-
|
|
16
|
-
__all__ = [
|
|
17
|
-
'get_token_model',
|
|
18
|
-
'get_organization_model',
|
|
19
|
-
'get_user_model',
|
|
20
|
-
'get_member_model',
|
|
21
|
-
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/shared_auth/abstract_models.py
RENAMED
|
File without changes
|
|
File without changes
|
{maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/shared_auth/authentication.py
RENAMED
|
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
|
{maquinaweb_shared_auth-0.2.34 → maquinaweb_shared_auth-0.2.35}/shared_auth/storage_backend.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|