oe-python-template 0.9.1__tar.gz → 0.9.3__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.1 → oe_python_template-0.9.3}/PKG-INFO +6 -4
- {oe_python_template-0.9.1 → oe_python_template-0.9.3}/README.md +5 -3
- {oe_python_template-0.9.1 → oe_python_template-0.9.3}/pyproject.toml +2 -2
- {oe_python_template-0.9.1 → oe_python_template-0.9.3}/.gitignore +0 -0
- {oe_python_template-0.9.1 → oe_python_template-0.9.3}/LICENSE +0 -0
- {oe_python_template-0.9.1 → oe_python_template-0.9.3}/src/oe_python_template/__init__.py +0 -0
- {oe_python_template-0.9.1 → oe_python_template-0.9.3}/src/oe_python_template/api.py +0 -0
- {oe_python_template-0.9.1 → oe_python_template-0.9.3}/src/oe_python_template/cli.py +0 -0
- {oe_python_template-0.9.1 → oe_python_template-0.9.3}/src/oe_python_template/constants.py +0 -0
- {oe_python_template-0.9.1 → oe_python_template-0.9.3}/src/oe_python_template/models.py +0 -0
- {oe_python_template-0.9.1 → oe_python_template-0.9.3}/src/oe_python_template/service.py +0 -0
- {oe_python_template-0.9.1 → oe_python_template-0.9.3}/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.3
|
|
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,9 +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
|
-
See the [reference documentation of the library](https://oe-python-template.readthedocs.io/en/latest/lib_reference.html) for detailed documentation of public classes and functions you can use in your code.
|
|
289
288
|
|
|
290
289
|
### Streamlit App
|
|
291
290
|
|
|
@@ -438,6 +437,9 @@ echo "Shutting down the API container ..."
|
|
|
438
437
|
docker compose down
|
|
439
438
|
```
|
|
440
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
|
+
|
|
441
443
|
## Extra: Lorem Ipsum
|
|
442
444
|
|
|
443
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,9 +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
|
-
See the [reference documentation of the library](https://oe-python-template.readthedocs.io/en/latest/lib_reference.html) for detailed documentation of public classes and functions you can use in your code.
|
|
228
227
|
|
|
229
228
|
### Streamlit App
|
|
230
229
|
|
|
@@ -377,6 +376,9 @@ echo "Shutting down the API container ..."
|
|
|
377
376
|
docker compose down
|
|
378
377
|
```
|
|
379
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
|
+
|
|
380
382
|
## Extra: Lorem Ipsum
|
|
381
383
|
|
|
382
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.3"
|
|
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" }]
|
|
@@ -262,7 +262,7 @@ source = ["src/"]
|
|
|
262
262
|
|
|
263
263
|
|
|
264
264
|
[tool.bumpversion]
|
|
265
|
-
current_version = "0.9.
|
|
265
|
+
current_version = "0.9.3"
|
|
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
|