simple-module-feature-flags 0.0.7__tar.gz → 0.0.8__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.
- {simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/PKG-INFO +4 -4
- {simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/package.json +4 -1
- {simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/pyproject.toml +4 -4
- {simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/.gitignore +0 -0
- {simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/LICENSE +0 -0
- {simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/README.md +0 -0
- {simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/feature_flags/__init__.py +0 -0
- {simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/feature_flags/constants.py +0 -0
- {simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/feature_flags/contracts/__init__.py +0 -0
- {simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/feature_flags/contracts/schemas.py +0 -0
- {simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/feature_flags/deps.py +0 -0
- {simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/feature_flags/endpoints/__init__.py +0 -0
- {simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/feature_flags/endpoints/api.py +0 -0
- {simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/feature_flags/endpoints/views.py +0 -0
- {simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/feature_flags/locales/en.json +0 -0
- {simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/feature_flags/models.py +0 -0
- {simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/feature_flags/module.py +0 -0
- {simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/feature_flags/pages/Browse.tsx +0 -0
- {simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/feature_flags/py.typed +0 -0
- {simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/feature_flags/service.py +0 -0
- {simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/tests/test_feature_flags_api.py +0 -0
- {simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/tests/test_feature_flags_service.py +0 -0
- {simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/tsconfig.json +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: simple_module_feature_flags
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.8
|
|
4
4
|
Summary: Simple feature-flag module with per-tenant overrides and a consumer API for simple_module
|
|
5
5
|
Project-URL: Homepage, https://github.com/antosubash/simple_module_python
|
|
6
6
|
Project-URL: Repository, https://github.com/antosubash/simple_module_python
|
|
@@ -21,9 +21,9 @@ Classifier: Topic :: Internet :: WWW/HTTP
|
|
|
21
21
|
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
22
22
|
Classifier: Typing :: Typed
|
|
23
23
|
Requires-Python: >=3.12
|
|
24
|
-
Requires-Dist: simple-module-core==0.0.
|
|
25
|
-
Requires-Dist: simple-module-db==0.0.
|
|
26
|
-
Requires-Dist: simple-module-hosting==0.0.
|
|
24
|
+
Requires-Dist: simple-module-core==0.0.8
|
|
25
|
+
Requires-Dist: simple-module-db==0.0.8
|
|
26
|
+
Requires-Dist: simple-module-hosting==0.0.8
|
|
27
27
|
Description-Content-Type: text/markdown
|
|
28
28
|
|
|
29
29
|
# simple_module_feature_flags
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "simple_module_feature_flags"
|
|
3
|
-
version = "0.0.
|
|
3
|
+
version = "0.0.8"
|
|
4
4
|
description = "Simple feature-flag module with per-tenant overrides and a consumer API for simple_module"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = "MIT"
|
|
@@ -21,9 +21,9 @@ classifiers = [
|
|
|
21
21
|
"Typing :: Typed",
|
|
22
22
|
]
|
|
23
23
|
dependencies = [
|
|
24
|
-
"simple_module_core==0.0.
|
|
25
|
-
"simple_module_db==0.0.
|
|
26
|
-
"simple_module_hosting==0.0.
|
|
24
|
+
"simple_module_core==0.0.8",
|
|
25
|
+
"simple_module_db==0.0.8",
|
|
26
|
+
"simple_module_hosting==0.0.8",
|
|
27
27
|
]
|
|
28
28
|
|
|
29
29
|
[project.entry-points.simple_module]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/feature_flags/__init__.py
RENAMED
|
File without changes
|
{simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/feature_flags/constants.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/feature_flags/deps.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/feature_flags/models.py
RENAMED
|
File without changes
|
{simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/feature_flags/module.py
RENAMED
|
File without changes
|
|
File without changes
|
{simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/feature_flags/py.typed
RENAMED
|
File without changes
|
{simple_module_feature_flags-0.0.7 → simple_module_feature_flags-0.0.8}/feature_flags/service.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|