open-api-framework 0.1.0__tar.gz → 0.3.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.
Files changed (21) hide show
  1. open_api_framework-0.3.0/CHANGELOG.rst +26 -0
  2. {open_api_framework-0.1.0/open_api_framework.egg-info → open_api_framework-0.3.0}/PKG-INFO +30 -37
  3. open_api_framework-0.3.0/README.rst +86 -0
  4. open_api_framework-0.3.0/open_api_framework/conf/base.py +650 -0
  5. open_api_framework-0.3.0/open_api_framework/conf/utils.py +63 -0
  6. open_api_framework-0.3.0/open_api_framework/py.typed +0 -0
  7. {open_api_framework-0.1.0 → open_api_framework-0.3.0/open_api_framework.egg-info}/PKG-INFO +30 -37
  8. {open_api_framework-0.1.0 → open_api_framework-0.3.0}/open_api_framework.egg-info/SOURCES.txt +5 -1
  9. {open_api_framework-0.1.0 → open_api_framework-0.3.0}/open_api_framework.egg-info/requires.txt +3 -1
  10. {open_api_framework-0.1.0 → open_api_framework-0.3.0}/pyproject.toml +7 -6
  11. {open_api_framework-0.1.0 → open_api_framework-0.3.0}/setup.cfg +1 -1
  12. open_api_framework-0.3.0/tests/test_config_helpers.py +13 -0
  13. open_api_framework-0.1.0/README.rst +0 -94
  14. open_api_framework-0.1.0/tests/test_dummy.py +0 -2
  15. {open_api_framework-0.1.0 → open_api_framework-0.3.0}/LICENSE +0 -0
  16. {open_api_framework-0.1.0 → open_api_framework-0.3.0}/MANIFEST.in +0 -0
  17. {open_api_framework-0.1.0 → open_api_framework-0.3.0}/open_api_framework/__init__.py +0 -0
  18. {open_api_framework-0.1.0 → open_api_framework-0.3.0}/open_api_framework/apps.py +0 -0
  19. /open_api_framework-0.1.0/open_api_framework/py.typed → /open_api_framework-0.3.0/open_api_framework/conf/__init__.py +0 -0
  20. {open_api_framework-0.1.0 → open_api_framework-0.3.0}/open_api_framework.egg-info/dependency_links.txt +0 -0
  21. {open_api_framework-0.1.0 → open_api_framework-0.3.0}/open_api_framework.egg-info/top_level.txt +0 -0
@@ -0,0 +1,26 @@
1
+ Changelog
2
+ =========
3
+
4
+ 0.3.0 (2024-05-17)
5
+ ------------------
6
+
7
+ **New features**
8
+
9
+ * [#14] Add django-log-outgoing-requests to deps
10
+ * [open-zaak/open-zaak#1629] Add generic base settings file
11
+
12
+
13
+ 0.2.0 (2024-03-22)
14
+ ------------------
15
+
16
+ **New features**
17
+
18
+ * Add support for python 3.10
19
+ * Upgrade to Django 4.2
20
+ * Add maykin-2fa
21
+
22
+
23
+ 0.1.0 (2024-01-30)
24
+ ------------------
25
+
26
+ * Initial release as a metapackage to pin several dependencies
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: open_api_framework
3
- Version: 0.1.0
4
- Summary: TODO
3
+ Version: 0.3.0
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
7
7
 
@@ -15,10 +15,9 @@ Project-URL: Homepage, https://github.com/maykinmedia/open_api_framework
15
15
  Project-URL: Documentation, http://open_api_framework.readthedocs.io/en/latest/
16
16
  Project-URL: Bug Tracker, https://github.com/maykinmedia/open_api_framework/issues
17
17
  Project-URL: Source Code, https://github.com/maykinmedia/open_api_framework
18
- Keywords: TODO
18
+ Keywords: metapackage,dependencies,settings
19
19
  Classifier: Development Status :: 3 - Alpha
20
20
  Classifier: Framework :: Django
21
- Classifier: Framework :: Django :: 3.2
22
21
  Classifier: Framework :: Django :: 4.2
23
22
  Classifier: Intended Audience :: Developers
24
23
  Classifier: Operating System :: Unix
@@ -31,11 +30,12 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
31
30
  Requires-Python: >=3.9
32
31
  Description-Content-Type: text/x-rst
33
32
  License-File: LICENSE
34
- Requires-Dist: django>=3.2.23
33
+ Requires-Dist: django>=4.2.11
35
34
  Requires-Dist: django-axes>=6.3.0
36
35
  Requires-Dist: django-cors-headers>=4.3.1
37
36
  Requires-Dist: django-markup>=1.8.1
38
37
  Requires-Dist: django-jsonform>=2.21.4
38
+ Requires-Dist: django-log-outgoing-requests>=0.6.1
39
39
  Requires-Dist: django-admin-index>=3.1.0
40
40
  Requires-Dist: django-redis>=5.4.0
41
41
  Requires-Dist: djangorestframework>=3.12.4
@@ -56,6 +56,7 @@ Requires-Dist: sentry-sdk>=1.39.2
56
56
  Requires-Dist: elastic-apm>=6.20.0
57
57
  Requires-Dist: celery>=5.2.7
58
58
  Requires-Dist: flower>=2.0.1
59
+ Requires-Dist: maykin-2fa>=1.0.0
59
60
  Provides-Extra: tests
60
61
  Requires-Dist: pytest; extra == "tests"
61
62
  Requires-Dist: pytest-django; extra == "tests"
@@ -74,19 +75,18 @@ Requires-Dist: twine; extra == "release"
74
75
 
75
76
 
76
77
 
77
- Welcome to open_api_framework's documentation!
78
+ Welcome to open-api-framework's documentation!
78
79
  =================================================
79
80
 
80
- :Version: 0.1.0
81
- :Source: https://github.com/maykinmedia/open_api_framework
82
- :Keywords: ``<keywords>``
83
- :PythonVersion: 3.11
81
+ :Version: 0.3.0
82
+ :Source: https://github.com/maykinmedia/open-api-framework
83
+ :Keywords: metapackage, dependencies
84
84
 
85
85
  |build-status| |code-quality| |black| |coverage| |docs|
86
86
 
87
87
  |python-versions| |django-versions| |pypi-version|
88
88
 
89
- <One liner describing the project>
89
+ A metapackage for registration components, that bundles the dependencies shared between these components
90
90
 
91
91
  .. contents::
92
92
 
@@ -95,8 +95,7 @@ Welcome to open_api_framework's documentation!
95
95
  Features
96
96
  ========
97
97
 
98
- * ...
99
- * ...
98
+ * Bundling shared dependencies and introducing minimum versions for these dependencies
100
99
 
101
100
  Installation
102
101
  ============
@@ -104,27 +103,21 @@ Installation
104
103
  Requirements
105
104
  ------------
106
105
 
107
- * Python 3.9/3.11 or above
108
- * Django 3.2/4.2 or newer
106
+ * Python 3.9 or above
107
+ * Django 4.2 or newer
109
108
 
110
109
 
111
110
  Install
112
111
  -------
113
112
 
114
- .. code-block:: bash
115
-
116
- pip install open_api_framework
117
-
118
-
119
- Usage
120
- =====
121
-
122
- <document or refer to docs>
113
+ 1. Add open-api-framework to your requirements file
114
+ 2. Remove dependencies from your requirements file that occur in ``pyproject.toml``
115
+ 3. Recompile the dependencies
123
116
 
124
117
  Local development
125
118
  =================
126
119
 
127
- To install and develop the library locally, use::
120
+ To install and develop the library locally, use:
128
121
 
129
122
  .. code-block:: bash
130
123
 
@@ -141,28 +134,28 @@ directory to the python path (or use ``python -m django <command>``):
141
134
  # django-admin makemessages -l nl
142
135
 
143
136
 
144
- .. |build-status| image:: https://github.com/maykinmedia/open_api_framework/workflows/Run%20CI/badge.svg
137
+ .. |build-status| image:: https://github.com/maykinmedia/open-api-framework/workflows/Run%20CI/badge.svg
145
138
  :alt: Build status
146
- :target: https://github.com/maykinmedia/open_api_framework/actions?query=workflow%3A%22Run+CI%22
139
+ :target: https://github.com/maykinmedia/open-api-framework/actions?query=workflow%3A%22Run+CI%22
147
140
 
148
- .. |code-quality| image:: https://github.com/maykinmedia/open_api_framework/workflows/Code%20quality%20checks/badge.svg
141
+ .. |code-quality| image:: https://github.com/maykinmedia/open-api-framework/workflows/Code%20quality%20checks/badge.svg
149
142
  :alt: Code quality checks
150
- :target: https://github.com/maykinmedia/open_api_framework/actions?query=workflow%3A%22Code+quality+checks%22
143
+ :target: https://github.com/maykinmedia/open-api-framework/actions?query=workflow%3A%22Code+quality+checks%22
151
144
 
152
145
  .. |black| image:: https://img.shields.io/badge/code%20style-black-000000.svg
153
146
  :target: https://github.com/psf/black
154
147
 
155
- .. |coverage| image:: https://codecov.io/gh/maykinmedia/open_api_framework/branch/main/graph/badge.svg
156
- :target: https://codecov.io/gh/maykinmedia/open_api_framework
148
+ .. |coverage| image:: https://codecov.io/gh/maykinmedia/open-api-framework/branch/main/graph/badge.svg
149
+ :target: https://codecov.io/gh/maykinmedia/open-api-framework
157
150
  :alt: Coverage status
158
151
 
159
- .. |docs| image:: https://readthedocs.org/projects/open_api_framework/badge/?version=latest
160
- :target: https://open_api_framework.readthedocs.io/en/latest/?badge=latest
152
+ .. |docs| image:: https://readthedocs.org/projects/open-api-framework/badge/?version=latest
153
+ :target: https://open-api-framework.readthedocs.io/en/latest/?badge=latest
161
154
  :alt: Documentation Status
162
155
 
163
- .. |python-versions| image:: https://img.shields.io/pypi/pyversions/open_api_framework.svg
156
+ .. |python-versions| image:: https://img.shields.io/pypi/pyversions/open-api-framework.svg
164
157
 
165
- .. |django-versions| image:: https://img.shields.io/pypi/djversions/open_api_framework.svg
158
+ .. |django-versions| image:: https://img.shields.io/pypi/djversions/open-api-framework.svg
166
159
 
167
- .. |pypi-version| image:: https://img.shields.io/pypi/v/open_api_framework.svg
168
- :target: https://pypi.org/project/open_api_framework/
160
+ .. |pypi-version| image:: https://img.shields.io/pypi/v/open-api-framework.svg
161
+ :target: https://pypi.org/project/open-api-framework/
@@ -0,0 +1,86 @@
1
+
2
+
3
+ Welcome to open-api-framework's documentation!
4
+ =================================================
5
+
6
+ :Version: 0.3.0
7
+ :Source: https://github.com/maykinmedia/open-api-framework
8
+ :Keywords: metapackage, dependencies
9
+
10
+ |build-status| |code-quality| |black| |coverage| |docs|
11
+
12
+ |python-versions| |django-versions| |pypi-version|
13
+
14
+ A metapackage for registration components, that bundles the dependencies shared between these components
15
+
16
+ .. contents::
17
+
18
+ .. section-numbering::
19
+
20
+ Features
21
+ ========
22
+
23
+ * Bundling shared dependencies and introducing minimum versions for these dependencies
24
+
25
+ Installation
26
+ ============
27
+
28
+ Requirements
29
+ ------------
30
+
31
+ * Python 3.9 or above
32
+ * Django 4.2 or newer
33
+
34
+
35
+ Install
36
+ -------
37
+
38
+ 1. Add open-api-framework to your requirements file
39
+ 2. Remove dependencies from your requirements file that occur in ``pyproject.toml``
40
+ 3. Recompile the dependencies
41
+
42
+ Local development
43
+ =================
44
+
45
+ To install and develop the library locally, use:
46
+
47
+ .. code-block:: bash
48
+
49
+ pip install -e .[tests,coverage,docs,release]
50
+
51
+ When running management commands via ``django-admin``, make sure to add the root
52
+ directory to the python path (or use ``python -m django <command>``):
53
+
54
+ .. code-block:: bash
55
+
56
+ export PYTHONPATH=. DJANGO_SETTINGS_MODULE=testapp.settings
57
+ django-admin check
58
+ # or other commands like:
59
+ # django-admin makemessages -l nl
60
+
61
+
62
+ .. |build-status| image:: https://github.com/maykinmedia/open-api-framework/workflows/Run%20CI/badge.svg
63
+ :alt: Build status
64
+ :target: https://github.com/maykinmedia/open-api-framework/actions?query=workflow%3A%22Run+CI%22
65
+
66
+ .. |code-quality| image:: https://github.com/maykinmedia/open-api-framework/workflows/Code%20quality%20checks/badge.svg
67
+ :alt: Code quality checks
68
+ :target: https://github.com/maykinmedia/open-api-framework/actions?query=workflow%3A%22Code+quality+checks%22
69
+
70
+ .. |black| image:: https://img.shields.io/badge/code%20style-black-000000.svg
71
+ :target: https://github.com/psf/black
72
+
73
+ .. |coverage| image:: https://codecov.io/gh/maykinmedia/open-api-framework/branch/main/graph/badge.svg
74
+ :target: https://codecov.io/gh/maykinmedia/open-api-framework
75
+ :alt: Coverage status
76
+
77
+ .. |docs| image:: https://readthedocs.org/projects/open-api-framework/badge/?version=latest
78
+ :target: https://open-api-framework.readthedocs.io/en/latest/?badge=latest
79
+ :alt: Documentation Status
80
+
81
+ .. |python-versions| image:: https://img.shields.io/pypi/pyversions/open-api-framework.svg
82
+
83
+ .. |django-versions| image:: https://img.shields.io/pypi/djversions/open-api-framework.svg
84
+
85
+ .. |pypi-version| image:: https://img.shields.io/pypi/v/open-api-framework.svg
86
+ :target: https://pypi.org/project/open-api-framework/