kinde-python-sdk 2.0.0b1__tar.gz → 2.0.0b2__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.
- {kinde_python_sdk-2.0.0b1/kinde_python_sdk.egg-info → kinde_python_sdk-2.0.0b2}/PKG-INFO +1 -1
- kinde_python_sdk-2.0.0b2/kinde_flask/__init__.py +10 -0
- {kinde_python_sdk-2.0.0b1 → kinde_python_sdk-2.0.0b2/kinde_python_sdk.egg-info}/PKG-INFO +1 -1
- {kinde_python_sdk-2.0.0b1 → kinde_python_sdk-2.0.0b2}/kinde_python_sdk.egg-info/SOURCES.txt +1 -0
- {kinde_python_sdk-2.0.0b1 → kinde_python_sdk-2.0.0b2}/kinde_python_sdk.egg-info/top_level.txt +1 -0
- {kinde_python_sdk-2.0.0b1 → kinde_python_sdk-2.0.0b2}/pyproject.toml +2 -2
- {kinde_python_sdk-2.0.0b1 → kinde_python_sdk-2.0.0b2}/LICENSE +0 -0
- {kinde_python_sdk-2.0.0b1 → kinde_python_sdk-2.0.0b2}/README.md +0 -0
- {kinde_python_sdk-2.0.0b1 → kinde_python_sdk-2.0.0b2}/kinde_fastapi/__init__.py +0 -0
- {kinde_python_sdk-2.0.0b1 → kinde_python_sdk-2.0.0b2}/kinde_python_sdk.egg-info/dependency_links.txt +0 -0
- {kinde_python_sdk-2.0.0b1 → kinde_python_sdk-2.0.0b2}/kinde_python_sdk.egg-info/requires.txt +0 -0
- {kinde_python_sdk-2.0.0b1 → kinde_python_sdk-2.0.0b2}/kinde_sdk/__init__.py +0 -0
- {kinde_python_sdk-2.0.0b1 → kinde_python_sdk-2.0.0b2}/setup.cfg +0 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
from .framework.flask_framework import FlaskFramework
|
|
2
|
+
from kinde_sdk.core.framework.framework_factory import FrameworkFactory
|
|
3
|
+
from kinde_sdk.core.storage.storage_factory import StorageFactory
|
|
4
|
+
from .storage.flask_storage_factory import FlaskStorageFactory
|
|
5
|
+
|
|
6
|
+
# Register the Flask framework
|
|
7
|
+
FrameworkFactory.register_framework("flask", FlaskFramework)
|
|
8
|
+
StorageFactory.register_framework_factory("flask", FlaskStorageFactory)
|
|
9
|
+
|
|
10
|
+
__all__ = ['FlaskFramework']
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "kinde-python-sdk"
|
|
3
|
-
version = "2.0.0-beta.
|
|
3
|
+
version = "2.0.0-beta.2"
|
|
4
4
|
authors = [
|
|
5
5
|
{ name = "Kinde Engineering", email = "engineering@kinde.com" },
|
|
6
6
|
]
|
|
@@ -54,7 +54,7 @@ requires = ["setuptools >= 61.0"]
|
|
|
54
54
|
build-backend = "setuptools.build_meta"
|
|
55
55
|
|
|
56
56
|
[tool.setuptools]
|
|
57
|
-
packages = ["kinde_sdk", "kinde_fastapi"]
|
|
57
|
+
packages = ["kinde_sdk", "kinde_fastapi", "kinde_flask"]
|
|
58
58
|
|
|
59
59
|
[tool.poetry.dev-dependencies]
|
|
60
60
|
pytest = "^7.4.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kinde_python_sdk-2.0.0b1 → kinde_python_sdk-2.0.0b2}/kinde_python_sdk.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{kinde_python_sdk-2.0.0b1 → kinde_python_sdk-2.0.0b2}/kinde_python_sdk.egg-info/requires.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|