oe-python-template 0.6.30__tar.gz → 0.6.31__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.6.30
3
+ Version: 0.6.31
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/
@@ -112,7 +112,7 @@ This [Copier](https://copier.readthedocs.io/en/stable/) template enables you to
112
112
 
113
113
  ### Development Infrastructure
114
114
 
115
- Projects generated with the template come with a comprehensive development toolchain and quality assurance framework that supports the entire software development lifecycle - from coding and testing to documentation, release management, and compliance auditing. This infrastructure automates routine tasks, enforces code quality standards, and streamlines the path to production:
115
+ Projects generated with this template come with a comprehensive development toolchain and quality assurance framework that supports the entire software development lifecycle - from coding and testing to documentation, release management, and compliance auditing. This infrastructure automates routine tasks, enforces code quality standards, and streamlines the path to production:
116
116
 
117
117
  1. Linting with [Ruff](https://github.com/astral-sh/ruff)
118
118
  2. Static type checking with [mypy](https://mypy.readthedocs.io/en/stable/)
@@ -198,9 +198,10 @@ external services such as CloudCov, SonarQube Cloud, Read The Docs, Docker.io, a
198
198
  ./n bump
199
199
  ```
200
200
  Notes:
201
- 1. You can remove this section post having successfully generated your project.
202
- 2. The following sections refer to the dummy application and service provided by this template.
203
- Use them as inspiration and adapt them to your own project.
201
+ 1. You can remove the above sections - from "Scaffolding" to this notes - post having successfully generated your project.
202
+ 2. The following sections refer to the dummy application and service generated into the `tests` and `src` folder by this template.
203
+ Use the documentation and code as inspiration, adapt to your business logic, or remove and start documenting and coding from scratch.
204
+
204
205
 
205
206
  ## Overview
206
207
 
@@ -51,7 +51,7 @@ This [Copier](https://copier.readthedocs.io/en/stable/) template enables you to
51
51
 
52
52
  ### Development Infrastructure
53
53
 
54
- Projects generated with the template come with a comprehensive development toolchain and quality assurance framework that supports the entire software development lifecycle - from coding and testing to documentation, release management, and compliance auditing. This infrastructure automates routine tasks, enforces code quality standards, and streamlines the path to production:
54
+ Projects generated with this template come with a comprehensive development toolchain and quality assurance framework that supports the entire software development lifecycle - from coding and testing to documentation, release management, and compliance auditing. This infrastructure automates routine tasks, enforces code quality standards, and streamlines the path to production:
55
55
 
56
56
  1. Linting with [Ruff](https://github.com/astral-sh/ruff)
57
57
  2. Static type checking with [mypy](https://mypy.readthedocs.io/en/stable/)
@@ -137,9 +137,10 @@ external services such as CloudCov, SonarQube Cloud, Read The Docs, Docker.io, a
137
137
  ./n bump
138
138
  ```
139
139
  Notes:
140
- 1. You can remove this section post having successfully generated your project.
141
- 2. The following sections refer to the dummy application and service provided by this template.
142
- Use them as inspiration and adapt them to your own project.
140
+ 1. You can remove the above sections - from "Scaffolding" to this notes - post having successfully generated your project.
141
+ 2. The following sections refer to the dummy application and service generated into the `tests` and `src` folder by this template.
142
+ Use the documentation and code as inspiration, adapt to your business logic, or remove and start documenting and coding from scratch.
143
+
143
144
 
144
145
  ## Overview
145
146
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "oe-python-template"
3
- version = "0.6.30"
3
+ version = "0.6.31"
4
4
  description = "🧠 Copier template to scaffold Python projects compliant with best practices and modern tooling."
5
5
  readme = "README.md"
6
6
  authors = [
@@ -248,7 +248,7 @@ source = ["src/"]
248
248
 
249
249
 
250
250
  [tool.bumpversion]
251
- current_version = "0.6.30"
251
+ current_version = "0.6.31"
252
252
  parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
253
253
  serialize = ["{major}.{minor}.{patch}"]
254
254
  search = "{current_version}"