oe-python-template 0.7.2__tar.gz → 0.7.4__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.7.2 → oe_python_template-0.7.4}/PKG-INFO +5 -5
- {oe_python_template-0.7.2 → oe_python_template-0.7.4}/README.md +1 -1
- {oe_python_template-0.7.2 → oe_python_template-0.7.4}/pyproject.toml +7 -7
- {oe_python_template-0.7.2 → oe_python_template-0.7.4}/.gitignore +0 -0
- {oe_python_template-0.7.2 → oe_python_template-0.7.4}/LICENSE +0 -0
- {oe_python_template-0.7.2 → oe_python_template-0.7.4}/src/oe_python_template/__init__.py +0 -0
- {oe_python_template-0.7.2 → oe_python_template-0.7.4}/src/oe_python_template/api.py +0 -0
- {oe_python_template-0.7.2 → oe_python_template-0.7.4}/src/oe_python_template/cli.py +0 -0
- {oe_python_template-0.7.2 → oe_python_template-0.7.4}/src/oe_python_template/constants.py +0 -0
- {oe_python_template-0.7.2 → oe_python_template-0.7.4}/src/oe_python_template/models.py +0 -0
- {oe_python_template-0.7.2 → oe_python_template-0.7.4}/src/oe_python_template/service.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: oe-python-template
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.4
|
|
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/
|
|
@@ -48,14 +48,14 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
48
48
|
Classifier: Programming Language :: Python :: 3.13
|
|
49
49
|
Classifier: Typing :: Typed
|
|
50
50
|
Requires-Python: <4.0,>=3.11
|
|
51
|
-
Requires-Dist: fastapi[all,standard]>=0.115.
|
|
51
|
+
Requires-Dist: fastapi[all,standard]>=0.115.12
|
|
52
52
|
Requires-Dist: pydantic>=2.10.6
|
|
53
|
-
Requires-Dist: python-dotenv>=1.0
|
|
53
|
+
Requires-Dist: python-dotenv>=1.1.0
|
|
54
54
|
Requires-Dist: typer>=0.15.1
|
|
55
55
|
Provides-Extra: examples
|
|
56
56
|
Requires-Dist: jinja2>=3.1.6; extra == 'examples'
|
|
57
57
|
Requires-Dist: jupyter>=1.1.1; extra == 'examples'
|
|
58
|
-
Requires-Dist: marimo>=0.11.
|
|
58
|
+
Requires-Dist: marimo>=0.11.26; extra == 'examples'
|
|
59
59
|
Requires-Dist: streamlit>=1.43.2; extra == 'examples'
|
|
60
60
|
Description-Content-Type: text/markdown
|
|
61
61
|
|
|
@@ -166,7 +166,7 @@ curl -LsSf https://raw.githubusercontent.com/helmut-hoffer-von-ankershoffen/oe-p
|
|
|
166
166
|
|
|
167
167
|
**Step 3**: Execute the following command to generate a new project based on this template.
|
|
168
168
|
```shell
|
|
169
|
-
# Ensure to stand in
|
|
169
|
+
# Ensure to stand in your freshly created git repository before executing this command
|
|
170
170
|
copier copy --trust gh:helmut-hoffer-von-ankershoffen/oe-python-template .
|
|
171
171
|
```
|
|
172
172
|
|
|
@@ -105,7 +105,7 @@ curl -LsSf https://raw.githubusercontent.com/helmut-hoffer-von-ankershoffen/oe-p
|
|
|
105
105
|
|
|
106
106
|
**Step 3**: Execute the following command to generate a new project based on this template.
|
|
107
107
|
```shell
|
|
108
|
-
# Ensure to stand in
|
|
108
|
+
# Ensure to stand in your freshly created git repository before executing this command
|
|
109
109
|
copier copy --trust gh:helmut-hoffer-von-ankershoffen/oe-python-template .
|
|
110
110
|
```
|
|
111
111
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "oe-python-template"
|
|
3
|
-
version = "0.7.
|
|
3
|
+
version = "0.7.4"
|
|
4
4
|
description = "🧠 Copier template to scaffold Python projects compliant with best practices and modern tooling."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [
|
|
@@ -62,9 +62,9 @@ classifiers = [
|
|
|
62
62
|
requires-python = ">=3.11, <4.0"
|
|
63
63
|
|
|
64
64
|
dependencies = [
|
|
65
|
-
"fastapi[standard,all]>=0.115.
|
|
65
|
+
"fastapi[standard,all]>=0.115.12",
|
|
66
66
|
"pydantic>=2.10.6",
|
|
67
|
-
"python-dotenv>=1.0
|
|
67
|
+
"python-dotenv>=1.1.0",
|
|
68
68
|
"typer>=0.15.1",
|
|
69
69
|
]
|
|
70
70
|
|
|
@@ -91,7 +91,7 @@ packages = ["src/oe_python_template"]
|
|
|
91
91
|
[project.optional-dependencies]
|
|
92
92
|
examples = [
|
|
93
93
|
"streamlit>=1.43.2",
|
|
94
|
-
"marimo>=0.11.
|
|
94
|
+
"marimo>=0.11.26",
|
|
95
95
|
"jupyter>=1.1.1",
|
|
96
96
|
"jinja2>=3.1.6",
|
|
97
97
|
]
|
|
@@ -99,7 +99,7 @@ examples = [
|
|
|
99
99
|
[dependency-groups]
|
|
100
100
|
dev = [
|
|
101
101
|
"autodoc-pydantic>=2.2.0",
|
|
102
|
-
"bump-my-version>=1.
|
|
102
|
+
"bump-my-version>=1.1.1",
|
|
103
103
|
"cyclonedx-py>=1.0.1",
|
|
104
104
|
"detect-secrets>=1.5.0",
|
|
105
105
|
"enum-tools>=0.12.0",
|
|
@@ -113,7 +113,7 @@ dev = [
|
|
|
113
113
|
"pre-commit>=4.1.0",
|
|
114
114
|
"pyright>=1.1.396",
|
|
115
115
|
"pytest>=8.3.5",
|
|
116
|
-
"pytest-asyncio>=0.
|
|
116
|
+
"pytest-asyncio>=0.26.0",
|
|
117
117
|
"pytest-cov>=6.0.0",
|
|
118
118
|
"pytest-docker>=3.2.0",
|
|
119
119
|
"pytest-env>=1.1.5",
|
|
@@ -253,7 +253,7 @@ source = ["src/"]
|
|
|
253
253
|
|
|
254
254
|
|
|
255
255
|
[tool.bumpversion]
|
|
256
|
-
current_version = "0.7.
|
|
256
|
+
current_version = "0.7.4"
|
|
257
257
|
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
|
|
258
258
|
serialize = ["{major}.{minor}.{patch}"]
|
|
259
259
|
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
|