oe-python-template 0.9.0__tar.gz → 0.9.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: oe-python-template
3
- Version: 0.9.0
3
+ Version: 0.9.1
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/
@@ -285,6 +285,8 @@ console.print(f"[blue]{message}[/blue]")
285
285
 
286
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/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
  ### Streamlit App
289
291
 
290
292
  Serve the functionality provided by OE Python Template in the web by easily integrating the service into a Streamlit application.
@@ -363,6 +365,9 @@ uvx oe-python-template openapi --output-format=json
363
365
  uvx oe-python-template serve
364
366
  ```
365
367
 
368
+ 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.
369
+
370
+
366
371
  ### Environment
367
372
 
368
373
  The service loads environment variables including support for .env files.
@@ -224,6 +224,8 @@ console.print(f"[blue]{message}[/blue]")
224
224
 
225
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/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
  ### Streamlit App
228
230
 
229
231
  Serve the functionality provided by OE Python Template in the web by easily integrating the service into a Streamlit application.
@@ -302,6 +304,9 @@ uvx oe-python-template openapi --output-format=json
302
304
  uvx oe-python-template serve
303
305
  ```
304
306
 
307
+ 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.
308
+
309
+
305
310
  ### Environment
306
311
 
307
312
  The service loads environment variables including support for .env files.
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "oe-python-template"
3
- version = "0.9.0"
3
+ version = "0.9.1"
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.0"
265
+ current_version = "0.9.1"
266
266
  parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
267
267
  serialize = ["{major}.{minor}.{patch}"]
268
268
  search = "{current_version}"