open-api-framework 0.3.0__tar.gz → 0.4.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.
- {open_api_framework-0.3.0 → open_api_framework-0.4.0}/CHANGELOG.rst +8 -0
- {open_api_framework-0.3.0/open_api_framework.egg-info → open_api_framework-0.4.0}/PKG-INFO +3 -2
- {open_api_framework-0.3.0 → open_api_framework-0.4.0}/README.rst +1 -1
- {open_api_framework-0.3.0 → open_api_framework-0.4.0}/open_api_framework/conf/base.py +1 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.0/open_api_framework.egg-info}/PKG-INFO +3 -2
- {open_api_framework-0.3.0 → open_api_framework-0.4.0}/open_api_framework.egg-info/requires.txt +1 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.0}/pyproject.toml +3 -2
- {open_api_framework-0.3.0 → open_api_framework-0.4.0}/LICENSE +0 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.0}/MANIFEST.in +0 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.0}/open_api_framework/__init__.py +0 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.0}/open_api_framework/apps.py +0 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.0}/open_api_framework/conf/__init__.py +0 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.0}/open_api_framework/conf/utils.py +0 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.0}/open_api_framework/py.typed +0 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.0}/open_api_framework.egg-info/SOURCES.txt +0 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.0}/open_api_framework.egg-info/dependency_links.txt +0 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.0}/open_api_framework.egg-info/top_level.txt +0 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.0}/setup.cfg +0 -0
- {open_api_framework-0.3.0 → open_api_framework-0.4.0}/tests/test_config_helpers.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: open_api_framework
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0
|
|
4
4
|
Summary: A metapackage for registration components, that bundles the dependencies shared between these components and provides generic settings
|
|
5
5
|
Author-email: Maykin Media <support@maykinmedia.nl>
|
|
6
6
|
License: Copyright 2024 Maykin Media
|
|
@@ -57,6 +57,7 @@ Requires-Dist: elastic-apm>=6.20.0
|
|
|
57
57
|
Requires-Dist: celery>=5.2.7
|
|
58
58
|
Requires-Dist: flower>=2.0.1
|
|
59
59
|
Requires-Dist: maykin-2fa>=1.0.0
|
|
60
|
+
Requires-Dist: django-setup-configuration>=0.1.0
|
|
60
61
|
Provides-Extra: tests
|
|
61
62
|
Requires-Dist: pytest; extra == "tests"
|
|
62
63
|
Requires-Dist: pytest-django; extra == "tests"
|
|
@@ -78,7 +79,7 @@ Requires-Dist: twine; extra == "release"
|
|
|
78
79
|
Welcome to open-api-framework's documentation!
|
|
79
80
|
=================================================
|
|
80
81
|
|
|
81
|
-
:Version: 0.
|
|
82
|
+
:Version: 0.4.0
|
|
82
83
|
:Source: https://github.com/maykinmedia/open-api-framework
|
|
83
84
|
:Keywords: metapackage, dependencies
|
|
84
85
|
|
|
@@ -610,6 +610,7 @@ ELASTIC_APM = {
|
|
|
610
610
|
),
|
|
611
611
|
"SECRET_TOKEN": config("ELASTIC_APM_SECRET_TOKEN", "default"),
|
|
612
612
|
"SERVER_URL": ELASTIC_APM_SERVER_URL,
|
|
613
|
+
"TRANSACTION_SAMPLE_RATE": config("ELASTIC_APM_TRANSACTION_SAMPLE_RATE", 0.1),
|
|
613
614
|
}
|
|
614
615
|
if not ELASTIC_APM_SERVER_URL:
|
|
615
616
|
ELASTIC_APM["ENABLED"] = False
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: open_api_framework
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0
|
|
4
4
|
Summary: A metapackage for registration components, that bundles the dependencies shared between these components and provides generic settings
|
|
5
5
|
Author-email: Maykin Media <support@maykinmedia.nl>
|
|
6
6
|
License: Copyright 2024 Maykin Media
|
|
@@ -57,6 +57,7 @@ Requires-Dist: elastic-apm>=6.20.0
|
|
|
57
57
|
Requires-Dist: celery>=5.2.7
|
|
58
58
|
Requires-Dist: flower>=2.0.1
|
|
59
59
|
Requires-Dist: maykin-2fa>=1.0.0
|
|
60
|
+
Requires-Dist: django-setup-configuration>=0.1.0
|
|
60
61
|
Provides-Extra: tests
|
|
61
62
|
Requires-Dist: pytest; extra == "tests"
|
|
62
63
|
Requires-Dist: pytest-django; extra == "tests"
|
|
@@ -78,7 +79,7 @@ Requires-Dist: twine; extra == "release"
|
|
|
78
79
|
Welcome to open-api-framework's documentation!
|
|
79
80
|
=================================================
|
|
80
81
|
|
|
81
|
-
:Version: 0.
|
|
82
|
+
:Version: 0.4.0
|
|
82
83
|
:Source: https://github.com/maykinmedia/open-api-framework
|
|
83
84
|
:Keywords: metapackage, dependencies
|
|
84
85
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "open_api_framework"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.4.0"
|
|
8
8
|
description = "A metapackage for registration components, that bundles the dependencies shared between these components and provides generic settings"
|
|
9
9
|
authors = [
|
|
10
10
|
{name = "Maykin Media", email = "support@maykinmedia.nl"}
|
|
@@ -54,6 +54,7 @@ dependencies = [
|
|
|
54
54
|
"celery>=5.2.7",
|
|
55
55
|
"flower>=2.0.1",
|
|
56
56
|
"maykin-2fa>=1.0.0",
|
|
57
|
+
"django-setup-configuration>=0.1.0",
|
|
57
58
|
]
|
|
58
59
|
|
|
59
60
|
[project.urls]
|
|
@@ -99,7 +100,7 @@ testpaths = ["tests"]
|
|
|
99
100
|
DJANGO_SETTINGS_MODULE = "testapp.settings"
|
|
100
101
|
|
|
101
102
|
[tool.bumpversion]
|
|
102
|
-
current_version = "0.
|
|
103
|
+
current_version = "0.4.0"
|
|
103
104
|
files = [
|
|
104
105
|
{filename = "pyproject.toml"},
|
|
105
106
|
{filename = "README.rst"},
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{open_api_framework-0.3.0 → open_api_framework-0.4.0}/open_api_framework.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{open_api_framework-0.3.0 → open_api_framework-0.4.0}/open_api_framework.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|