oe-python-template 0.9.3__tar.gz → 0.9.5__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.3 → oe_python_template-0.9.5}/PKG-INFO +8 -8
- {oe_python_template-0.9.3 → oe_python_template-0.9.5}/README.md +7 -7
- {oe_python_template-0.9.3 → oe_python_template-0.9.5}/pyproject.toml +8 -6
- {oe_python_template-0.9.3 → oe_python_template-0.9.5}/.gitignore +0 -0
- {oe_python_template-0.9.3 → oe_python_template-0.9.5}/LICENSE +0 -0
- {oe_python_template-0.9.3 → oe_python_template-0.9.5}/src/oe_python_template/__init__.py +0 -0
- {oe_python_template-0.9.3 → oe_python_template-0.9.5}/src/oe_python_template/api.py +0 -0
- {oe_python_template-0.9.3 → oe_python_template-0.9.5}/src/oe_python_template/cli.py +0 -0
- {oe_python_template-0.9.3 → oe_python_template-0.9.5}/src/oe_python_template/constants.py +0 -0
- {oe_python_template-0.9.3 → oe_python_template-0.9.5}/src/oe_python_template/models.py +0 -0
- {oe_python_template-0.9.3 → oe_python_template-0.9.5}/src/oe_python_template/service.py +0 -0
- {oe_python_template-0.9.3 → oe_python_template-0.9.5}/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.5
|
|
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/
|
|
@@ -404,13 +404,13 @@ Or use docker compose
|
|
|
404
404
|
The .env is passed through from the host to the Docker container.
|
|
405
405
|
|
|
406
406
|
```shell
|
|
407
|
-
docker compose run oe-python-template --help
|
|
408
|
-
docker compose run oe-python-template hello-world
|
|
409
|
-
docker compose run oe-python-template echo --help
|
|
410
|
-
docker compose run oe-python-template echo "Lorem"
|
|
411
|
-
docker compose run oe-python-template echo "Lorem" --json
|
|
412
|
-
docker compose run oe-python-template openapi
|
|
413
|
-
docker compose run oe-python-template openapi --output-format=json
|
|
407
|
+
docker compose run --remove-orphans oe-python-template --help
|
|
408
|
+
docker compose run --remove-orphans oe-python-template hello-world
|
|
409
|
+
docker compose run --remove-orphans oe-python-template echo --help
|
|
410
|
+
docker compose run --remove-orphans oe-python-template echo "Lorem"
|
|
411
|
+
docker compose run --remove-orphans oe-python-template echo "Lorem" --json
|
|
412
|
+
docker compose run --remove-orphans oe-python-template openapi
|
|
413
|
+
docker compose run --remove-orphans oe-python-template openapi --output-format=json
|
|
414
414
|
echo "Running OE Python Template's API container as a daemon ..."
|
|
415
415
|
docker compose up -d
|
|
416
416
|
echo "Waiting for the API server to start ..."
|
|
@@ -343,13 +343,13 @@ Or use docker compose
|
|
|
343
343
|
The .env is passed through from the host to the Docker container.
|
|
344
344
|
|
|
345
345
|
```shell
|
|
346
|
-
docker compose run oe-python-template --help
|
|
347
|
-
docker compose run oe-python-template hello-world
|
|
348
|
-
docker compose run oe-python-template echo --help
|
|
349
|
-
docker compose run oe-python-template echo "Lorem"
|
|
350
|
-
docker compose run oe-python-template echo "Lorem" --json
|
|
351
|
-
docker compose run oe-python-template openapi
|
|
352
|
-
docker compose run oe-python-template openapi --output-format=json
|
|
346
|
+
docker compose run --remove-orphans oe-python-template --help
|
|
347
|
+
docker compose run --remove-orphans oe-python-template hello-world
|
|
348
|
+
docker compose run --remove-orphans oe-python-template echo --help
|
|
349
|
+
docker compose run --remove-orphans oe-python-template echo "Lorem"
|
|
350
|
+
docker compose run --remove-orphans oe-python-template echo "Lorem" --json
|
|
351
|
+
docker compose run --remove-orphans oe-python-template openapi
|
|
352
|
+
docker compose run --remove-orphans oe-python-template openapi --output-format=json
|
|
353
353
|
echo "Running OE Python Template's API container as a daemon ..."
|
|
354
354
|
docker compose up -d
|
|
355
355
|
echo "Waiting for the API server to start ..."
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "oe-python-template"
|
|
3
|
-
version = "0.9.
|
|
3
|
+
version = "0.9.5"
|
|
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" }]
|
|
@@ -240,10 +240,12 @@ asyncio_default_fixture_loop_scope = "function"
|
|
|
240
240
|
env = ["COVERAGE_FILE=.coverage", "COVERAGE_PROCESS_START=pyproject.toml"]
|
|
241
241
|
markers = [
|
|
242
242
|
# From Template
|
|
243
|
-
"no_extras:
|
|
244
|
-
"scheduled:
|
|
245
|
-
"sequential:
|
|
246
|
-
"skip_with_act:
|
|
243
|
+
"no_extras: Tests that do require no extras installed.",
|
|
244
|
+
"scheduled: Tests to run on a schedule. They will still be part on non-scheduled test executions.",
|
|
245
|
+
"sequential: Exclude from parallel test execution.",
|
|
246
|
+
"skip_with_act: Don't run with act.",
|
|
247
|
+
"docker: tests That require Docker.",
|
|
248
|
+
"long_running: Tests that take a long time to run. Tests marked as long runing excluded from execution by default. Enable by passing any -m your_marker that matches a marker of the test.",
|
|
247
249
|
# Custom
|
|
248
250
|
# Nothing yet
|
|
249
251
|
]
|
|
@@ -262,7 +264,7 @@ source = ["src/"]
|
|
|
262
264
|
|
|
263
265
|
|
|
264
266
|
[tool.bumpversion]
|
|
265
|
-
current_version = "0.9.
|
|
267
|
+
current_version = "0.9.5"
|
|
266
268
|
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
|
|
267
269
|
serialize = ["{major}.{minor}.{patch}"]
|
|
268
270
|
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
|