sysnet-auth 0.2.0__tar.gz → 0.2.1__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.
- {sysnet_auth-0.2.0 → sysnet_auth-0.2.1}/PKG-INFO +4 -1
- {sysnet_auth-0.2.0 → sysnet_auth-0.2.1}/README.md +0 -0
- {sysnet_auth-0.2.0 → sysnet_auth-0.2.1}/auth_lib/__init__.py +0 -0
- {sysnet_auth-0.2.0 → sysnet_auth-0.2.1}/auth_lib/config.py +0 -0
- {sysnet_auth-0.2.0 → sysnet_auth-0.2.1}/auth_lib/dependencies.py +0 -0
- {sysnet_auth-0.2.0 → sysnet_auth-0.2.1}/auth_lib/exceptions.py +0 -0
- {sysnet_auth-0.2.0 → sysnet_auth-0.2.1}/auth_lib/jwks.py +0 -0
- {sysnet_auth-0.2.0 → sysnet_auth-0.2.1}/auth_lib/models.py +0 -0
- {sysnet_auth-0.2.0 → sysnet_auth-0.2.1}/auth_lib/observability.py +0 -0
- {sysnet_auth-0.2.0 → sysnet_auth-0.2.1}/auth_lib/py.typed +0 -0
- {sysnet_auth-0.2.0 → sysnet_auth-0.2.1}/auth_lib/roles.py +0 -0
- {sysnet_auth-0.2.0 → sysnet_auth-0.2.1}/pyproject.toml +4 -1
- {sysnet_auth-0.2.0 → sysnet_auth-0.2.1}/sysnet_auth.egg-info/PKG-INFO +4 -1
- {sysnet_auth-0.2.0 → sysnet_auth-0.2.1}/tests/test_edges.py +0 -0
- {sysnet_auth-0.2.0 → sysnet_auth-0.2.1}/tests/test_features.py +0 -0
- {sysnet_auth-0.2.0 → sysnet_auth-0.2.1}/tests/test_jwt.py +0 -0
- {sysnet_auth-0.2.0 → sysnet_auth-0.2.1}/tests/test_roles.py +0 -0
- {sysnet_auth-0.2.0 → sysnet_auth-0.2.1}/setup.cfg +0 -0
- {sysnet_auth-0.2.0 → sysnet_auth-0.2.1}/sysnet_auth.egg-info/SOURCES.txt +0 -0
- {sysnet_auth-0.2.0 → sysnet_auth-0.2.1}/sysnet_auth.egg-info/dependency_links.txt +0 -0
- {sysnet_auth-0.2.0 → sysnet_auth-0.2.1}/sysnet_auth.egg-info/requires.txt +0 -0
- {sysnet_auth-0.2.0 → sysnet_auth-0.2.1}/sysnet_auth.egg-info/top_level.txt +0 -0
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sysnet-auth
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Sdilena autentizacni knihovna pro FastAPI mikrosluzby s Keycloack (OIDC/JWT).
|
|
5
5
|
Author: SYSNET s.r.o.
|
|
6
6
|
License: Proprietary
|
|
7
7
|
Project-URL: Homepage, https://sysnet.cz
|
|
8
|
+
Project-URL: Repository, https://github.com/SYSNET-CZ/auth-lib
|
|
9
|
+
Project-URL: Documentation, https://github.com/SYSNET-CZ/auth-lib#readme
|
|
10
|
+
Project-URL: Bug Tracker, https://github.com/SYSNET-CZ/auth-lib/issues
|
|
8
11
|
Keywords: fastapi,keycloak,jwt,oidc,auth,sysnet
|
|
9
12
|
Classifier: Framework :: FastAPI
|
|
10
13
|
Classifier: Programming Language :: Python :: 3.11
|
|
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
|
|
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
|
|
|
5
5
|
[project]
|
|
6
6
|
# Distribucni nazev na internim PyPi. Import path zustava ``auth_lib``.
|
|
7
7
|
name = "sysnet-auth"
|
|
8
|
-
version = "0.2.
|
|
8
|
+
version = "0.2.1"
|
|
9
9
|
description = "Sdilena autentizacni knihovna pro FastAPI mikrosluzby s Keycloack (OIDC/JWT)."
|
|
10
10
|
readme = "README.md"
|
|
11
11
|
requires-python = ">=3.11"
|
|
@@ -46,6 +46,9 @@ dev = [
|
|
|
46
46
|
|
|
47
47
|
[project.urls]
|
|
48
48
|
Homepage = "https://sysnet.cz"
|
|
49
|
+
Repository = "https://github.com/SYSNET-CZ/auth-lib"
|
|
50
|
+
Documentation = "https://github.com/SYSNET-CZ/auth-lib#readme"
|
|
51
|
+
"Bug Tracker" = "https://github.com/SYSNET-CZ/auth-lib/issues"
|
|
49
52
|
|
|
50
53
|
[tool.setuptools.packages.find]
|
|
51
54
|
where = ["."]
|
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sysnet-auth
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Sdilena autentizacni knihovna pro FastAPI mikrosluzby s Keycloack (OIDC/JWT).
|
|
5
5
|
Author: SYSNET s.r.o.
|
|
6
6
|
License: Proprietary
|
|
7
7
|
Project-URL: Homepage, https://sysnet.cz
|
|
8
|
+
Project-URL: Repository, https://github.com/SYSNET-CZ/auth-lib
|
|
9
|
+
Project-URL: Documentation, https://github.com/SYSNET-CZ/auth-lib#readme
|
|
10
|
+
Project-URL: Bug Tracker, https://github.com/SYSNET-CZ/auth-lib/issues
|
|
8
11
|
Keywords: fastapi,keycloak,jwt,oidc,auth,sysnet
|
|
9
12
|
Classifier: Framework :: FastAPI
|
|
10
13
|
Classifier: Programming Language :: Python :: 3.11
|
|
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
|