oe-python-template 0.9.0__tar.gz → 0.9.2__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.
- {oe_python_template-0.9.0 → oe_python_template-0.9.2}/PKG-INFO +10 -3
- {oe_python_template-0.9.0 → oe_python_template-0.9.2}/README.md +9 -2
- {oe_python_template-0.9.0 → oe_python_template-0.9.2}/pyproject.toml +3 -3
- {oe_python_template-0.9.0 → oe_python_template-0.9.2}/.gitignore +0 -0
- {oe_python_template-0.9.0 → oe_python_template-0.9.2}/LICENSE +0 -0
- {oe_python_template-0.9.0 → oe_python_template-0.9.2}/src/oe_python_template/__init__.py +0 -0
- {oe_python_template-0.9.0 → oe_python_template-0.9.2}/src/oe_python_template/api.py +0 -0
- {oe_python_template-0.9.0 → oe_python_template-0.9.2}/src/oe_python_template/cli.py +0 -0
- {oe_python_template-0.9.0 → oe_python_template-0.9.2}/src/oe_python_template/constants.py +0 -0
- {oe_python_template-0.9.0 → oe_python_template-0.9.2}/src/oe_python_template/models.py +0 -0
- {oe_python_template-0.9.0 → oe_python_template-0.9.2}/src/oe_python_template/service.py +0 -0
- {oe_python_template-0.9.0 → oe_python_template-0.9.2}/src/oe_python_template/settings.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: oe-python-template
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.2
|
|
4
4
|
Summary: 🧠 Copier template to scaffold Python projects compliant with best practices and modern tooling.
|
|
5
5
|
Project-URL: Homepage, https://oe-python-template.readthedocs.io/en/latest/
|
|
6
6
|
Project-URL: Documentation, https://oe-python-template.readthedocs.io/en/latest/
|
|
@@ -247,7 +247,7 @@ This project is designed with operational excellence in mind, using modern Pytho
|
|
|
247
247
|
a. [Simple Python script](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template/blob/main/examples/script.py)
|
|
248
248
|
b. [Streamlit web application](https://oe-python-template.streamlit.app/) deployed on [Streamlit Community Cloud](https://streamlit.io/cloud)
|
|
249
249
|
c. [Jupyter](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template/blob/main/examples/notebook.ipynb) and [Marimo](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template/blob/main/examples/notebook.py) notebook
|
|
250
|
-
2.
|
|
250
|
+
2. Complete reference documentation [for the library](https://oe-python-template.readthedocs.io/en/latest/lib_reference.html), [for the CLI](https://oe-python-template.readthedocs.io/en/latest/cli_reference.html) and [for the API](https://oe-python-template.readthedocs.io/en/latest/api_reference_v1.html) on Read the Docs
|
|
251
251
|
3. [Transparent test coverage](https://app.codecov.io/gh/helmut-hoffer-von-ankershoffen/oe-python-template) including unit and E2E tests (reported on Codecov)
|
|
252
252
|
4. Matrix tested with [multiple python versions](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template/blob/main/noxfile.py) to ensure compatibility (powered by [Nox](https://nox.thea.codes/en/stable/))
|
|
253
253
|
5. Compliant with modern linting and formatting standards (powered by [Ruff](https://github.com/astral-sh/ruff))
|
|
@@ -283,7 +283,8 @@ message = Service.get_hello_world()
|
|
|
283
283
|
console.print(f"[blue]{message}[/blue]")
|
|
284
284
|
```
|
|
285
285
|
|
|
286
|
-
[Show script code](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template/blob/main/examples/script.py) - [Read the reference documentation](https://oe-python-template.readthedocs.io/en/latest/
|
|
286
|
+
[Show script code](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template/blob/main/examples/script.py) - [Read the reference documentation](https://oe-python-template.readthedocs.io/en/latest/lib_reference.html)
|
|
287
|
+
|
|
287
288
|
|
|
288
289
|
### Streamlit App
|
|
289
290
|
|
|
@@ -363,6 +364,9 @@ uvx oe-python-template openapi --output-format=json
|
|
|
363
364
|
uvx oe-python-template serve
|
|
364
365
|
```
|
|
365
366
|
|
|
367
|
+
See the [reference documentation of the CLI](https://oe-python-template.readthedocs.io/en/latest/cli_reference.html) for detailed documentation of all CLI commands and options.
|
|
368
|
+
|
|
369
|
+
|
|
366
370
|
### Environment
|
|
367
371
|
|
|
368
372
|
The service loads environment variables including support for .env files.
|
|
@@ -433,6 +437,9 @@ echo "Shutting down the API container ..."
|
|
|
433
437
|
docker compose down
|
|
434
438
|
```
|
|
435
439
|
|
|
440
|
+
* See the [reference documentation of the API](https://oe-python-template.readthedocs.io/en/latest/api_reference_v1.html) for detailed documentation of all API operations and parameters.
|
|
441
|
+
|
|
442
|
+
|
|
436
443
|
## Extra: Lorem Ipsum
|
|
437
444
|
|
|
438
445
|
Dolor sit amet, consectetur adipiscing elit. Donec a diam lectus. Sed sit amet ipsum mauris. Maecenas congue ligula ac quam.
|
|
@@ -186,7 +186,7 @@ This project is designed with operational excellence in mind, using modern Pytho
|
|
|
186
186
|
a. [Simple Python script](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template/blob/main/examples/script.py)
|
|
187
187
|
b. [Streamlit web application](https://oe-python-template.streamlit.app/) deployed on [Streamlit Community Cloud](https://streamlit.io/cloud)
|
|
188
188
|
c. [Jupyter](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template/blob/main/examples/notebook.ipynb) and [Marimo](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template/blob/main/examples/notebook.py) notebook
|
|
189
|
-
2.
|
|
189
|
+
2. Complete reference documentation [for the library](https://oe-python-template.readthedocs.io/en/latest/lib_reference.html), [for the CLI](https://oe-python-template.readthedocs.io/en/latest/cli_reference.html) and [for the API](https://oe-python-template.readthedocs.io/en/latest/api_reference_v1.html) on Read the Docs
|
|
190
190
|
3. [Transparent test coverage](https://app.codecov.io/gh/helmut-hoffer-von-ankershoffen/oe-python-template) including unit and E2E tests (reported on Codecov)
|
|
191
191
|
4. Matrix tested with [multiple python versions](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template/blob/main/noxfile.py) to ensure compatibility (powered by [Nox](https://nox.thea.codes/en/stable/))
|
|
192
192
|
5. Compliant with modern linting and formatting standards (powered by [Ruff](https://github.com/astral-sh/ruff))
|
|
@@ -222,7 +222,8 @@ message = Service.get_hello_world()
|
|
|
222
222
|
console.print(f"[blue]{message}[/blue]")
|
|
223
223
|
```
|
|
224
224
|
|
|
225
|
-
[Show script code](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template/blob/main/examples/script.py) - [Read the reference documentation](https://oe-python-template.readthedocs.io/en/latest/
|
|
225
|
+
[Show script code](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template/blob/main/examples/script.py) - [Read the reference documentation](https://oe-python-template.readthedocs.io/en/latest/lib_reference.html)
|
|
226
|
+
|
|
226
227
|
|
|
227
228
|
### Streamlit App
|
|
228
229
|
|
|
@@ -302,6 +303,9 @@ uvx oe-python-template openapi --output-format=json
|
|
|
302
303
|
uvx oe-python-template serve
|
|
303
304
|
```
|
|
304
305
|
|
|
306
|
+
See the [reference documentation of the CLI](https://oe-python-template.readthedocs.io/en/latest/cli_reference.html) for detailed documentation of all CLI commands and options.
|
|
307
|
+
|
|
308
|
+
|
|
305
309
|
### Environment
|
|
306
310
|
|
|
307
311
|
The service loads environment variables including support for .env files.
|
|
@@ -372,6 +376,9 @@ echo "Shutting down the API container ..."
|
|
|
372
376
|
docker compose down
|
|
373
377
|
```
|
|
374
378
|
|
|
379
|
+
* See the [reference documentation of the API](https://oe-python-template.readthedocs.io/en/latest/api_reference_v1.html) for detailed documentation of all API operations and parameters.
|
|
380
|
+
|
|
381
|
+
|
|
375
382
|
## Extra: Lorem Ipsum
|
|
376
383
|
|
|
377
384
|
Dolor sit amet, consectetur adipiscing elit. Donec a diam lectus. Sed sit amet ipsum mauris. Maecenas congue ligula ac quam.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "oe-python-template"
|
|
3
|
-
version = "0.9.
|
|
3
|
+
version = "0.9.2"
|
|
4
4
|
description = "🧠 Copier template to scaffold Python projects compliant with best practices and modern tooling."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [{ name = "Helmut Hoffer von Ankershoffen", email = "helmuthva@gmail.com" }]
|
|
@@ -131,7 +131,7 @@ dev = [
|
|
|
131
131
|
"sphinx-rtd-theme>=3.0.2",
|
|
132
132
|
"sphinx_selective_exclude>=1.0.3",
|
|
133
133
|
"sphinx-toolbox>=3.9.0",
|
|
134
|
-
"sphinxext.opengraph>=0.9.
|
|
134
|
+
"sphinxext.opengraph>=0.9.2",
|
|
135
135
|
"swagger-plugin-for-sphinx>=5.1.0",
|
|
136
136
|
"tomli>=2.1.0",
|
|
137
137
|
"types-pyyaml>=6.0.12.20250402",
|
|
@@ -262,7 +262,7 @@ source = ["src/"]
|
|
|
262
262
|
|
|
263
263
|
|
|
264
264
|
[tool.bumpversion]
|
|
265
|
-
current_version = "0.9.
|
|
265
|
+
current_version = "0.9.2"
|
|
266
266
|
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
|
|
267
267
|
serialize = ["{major}.{minor}.{patch}"]
|
|
268
268
|
search = "{current_version}"
|
|
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
|