oe-python-template 0.7.6__tar.gz → 0.7.8__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.6 → oe_python_template-0.7.8}/PKG-INFO +3 -3
- {oe_python_template-0.7.6 → oe_python_template-0.7.8}/pyproject.toml +7 -7
- {oe_python_template-0.7.6 → oe_python_template-0.7.8}/.gitignore +0 -0
- {oe_python_template-0.7.6 → oe_python_template-0.7.8}/LICENSE +0 -0
- {oe_python_template-0.7.6 → oe_python_template-0.7.8}/README.md +0 -0
- {oe_python_template-0.7.6 → oe_python_template-0.7.8}/src/oe_python_template/__init__.py +0 -0
- {oe_python_template-0.7.6 → oe_python_template-0.7.8}/src/oe_python_template/api.py +0 -0
- {oe_python_template-0.7.6 → oe_python_template-0.7.8}/src/oe_python_template/cli.py +0 -0
- {oe_python_template-0.7.6 → oe_python_template-0.7.8}/src/oe_python_template/constants.py +0 -0
- {oe_python_template-0.7.6 → oe_python_template-0.7.8}/src/oe_python_template/models.py +0 -0
- {oe_python_template-0.7.6 → oe_python_template-0.7.8}/src/oe_python_template/service.py +0 -0
- {oe_python_template-0.7.6 → oe_python_template-0.7.8}/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.7.
|
|
3
|
+
Version: 0.7.8
|
|
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/
|
|
@@ -55,8 +55,8 @@ 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.
|
|
59
|
-
Requires-Dist: streamlit>=1.
|
|
58
|
+
Requires-Dist: marimo>=0.11.28; extra == 'examples'
|
|
59
|
+
Requires-Dist: streamlit>=1.44.0; extra == 'examples'
|
|
60
60
|
Description-Content-Type: text/markdown
|
|
61
61
|
|
|
62
62
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "oe-python-template"
|
|
3
|
-
version = "0.7.
|
|
3
|
+
version = "0.7.8"
|
|
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" }]
|
|
@@ -88,8 +88,8 @@ packages = ["src/oe_python_template"]
|
|
|
88
88
|
|
|
89
89
|
[project.optional-dependencies]
|
|
90
90
|
examples = [
|
|
91
|
-
"streamlit>=1.
|
|
92
|
-
"marimo>=0.11.
|
|
91
|
+
"streamlit>=1.44.0",
|
|
92
|
+
"marimo>=0.11.28",
|
|
93
93
|
"jupyter>=1.1.1",
|
|
94
94
|
"jinja2>=3.1.6",
|
|
95
95
|
]
|
|
@@ -109,7 +109,7 @@ dev = [
|
|
|
109
109
|
"pip-audit>=2.8.0",
|
|
110
110
|
"pip-licenses>=5.0.0",
|
|
111
111
|
"pre-commit>=4.1.0",
|
|
112
|
-
"pyright>=1.1.
|
|
112
|
+
"pyright>=1.1.398",
|
|
113
113
|
"pytest>=8.3.5",
|
|
114
114
|
"pytest-asyncio>=0.26.0",
|
|
115
115
|
"pytest-cov>=6.0.0",
|
|
@@ -118,7 +118,7 @@ dev = [
|
|
|
118
118
|
"pytest-regressions>=2.7.0",
|
|
119
119
|
"pytest-subprocess>=1.5.3",
|
|
120
120
|
"pytest-xdist[psutil]>=3.6.1",
|
|
121
|
-
"ruff>=0.
|
|
121
|
+
"ruff>=0.11.2",
|
|
122
122
|
"sphinx>=8.2.3",
|
|
123
123
|
"sphinx-autobuild>=2024.10.3",
|
|
124
124
|
"sphinx-copybutton>=0.5.2",
|
|
@@ -130,7 +130,7 @@ dev = [
|
|
|
130
130
|
"sphinxext.opengraph>=0.9.1",
|
|
131
131
|
"swagger-plugin-for-sphinx>=5.1.0",
|
|
132
132
|
"tomli>=2.1.0",
|
|
133
|
-
"types-pyyaml>=6.0.12.
|
|
133
|
+
"types-pyyaml>=6.0.12.20250326",
|
|
134
134
|
"watchdog>=6.0.0",
|
|
135
135
|
]
|
|
136
136
|
|
|
@@ -252,7 +252,7 @@ source = ["src/"]
|
|
|
252
252
|
|
|
253
253
|
|
|
254
254
|
[tool.bumpversion]
|
|
255
|
-
current_version = "0.7.
|
|
255
|
+
current_version = "0.7.8"
|
|
256
256
|
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
|
|
257
257
|
serialize = ["{major}.{minor}.{patch}"]
|
|
258
258
|
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
|
|
File without changes
|