oe-python-template-example 0.3.2__tar.gz → 0.3.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_example-0.3.2 → oe_python_template_example-0.3.4}/PKG-INFO +8 -8
- {oe_python_template_example-0.3.2 → oe_python_template_example-0.3.4}/README.md +7 -7
- {oe_python_template_example-0.3.2 → oe_python_template_example-0.3.4}/pyproject.toml +8 -6
- {oe_python_template_example-0.3.2 → oe_python_template_example-0.3.4}/.gitignore +0 -0
- {oe_python_template_example-0.3.2 → oe_python_template_example-0.3.4}/LICENSE +0 -0
- {oe_python_template_example-0.3.2 → oe_python_template_example-0.3.4}/src/oe_python_template_example/__init__.py +0 -0
- {oe_python_template_example-0.3.2 → oe_python_template_example-0.3.4}/src/oe_python_template_example/api.py +0 -0
- {oe_python_template_example-0.3.2 → oe_python_template_example-0.3.4}/src/oe_python_template_example/cli.py +0 -0
- {oe_python_template_example-0.3.2 → oe_python_template_example-0.3.4}/src/oe_python_template_example/constants.py +0 -0
- {oe_python_template_example-0.3.2 → oe_python_template_example-0.3.4}/src/oe_python_template_example/models.py +0 -0
- {oe_python_template_example-0.3.2 → oe_python_template_example-0.3.4}/src/oe_python_template_example/service.py +0 -0
- {oe_python_template_example-0.3.2 → oe_python_template_example-0.3.4}/src/oe_python_template_example/settings.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: oe-python-template-example
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.4
|
4
4
|
Summary: 🧠 Example project scaffolded and kept up to date with OE Python Template (oe-python-template).
|
5
5
|
Project-URL: Homepage, https://oe-python-template-example.readthedocs.io/en/latest/
|
6
6
|
Project-URL: Documentation, https://oe-python-template-example.readthedocs.io/en/latest/
|
@@ -411,13 +411,13 @@ Or use docker compose
|
|
411
411
|
The .env is passed through from the host to the Docker container.
|
412
412
|
|
413
413
|
```shell
|
414
|
-
docker compose run oe-python-template-example --help
|
415
|
-
docker compose run oe-python-template-example hello-world
|
416
|
-
docker compose run oe-python-template-example echo --help
|
417
|
-
docker compose run oe-python-template-example echo "Lorem"
|
418
|
-
docker compose run oe-python-template-example echo "Lorem" --json
|
419
|
-
docker compose run oe-python-template-example openapi
|
420
|
-
docker compose run oe-python-template-example openapi --output-format=json
|
414
|
+
docker compose run --remove-orphans oe-python-template-example --help
|
415
|
+
docker compose run --remove-orphans oe-python-template-example hello-world
|
416
|
+
docker compose run --remove-orphans oe-python-template-example echo --help
|
417
|
+
docker compose run --remove-orphans oe-python-template-example echo "Lorem"
|
418
|
+
docker compose run --remove-orphans oe-python-template-example echo "Lorem" --json
|
419
|
+
docker compose run --remove-orphans oe-python-template-example openapi
|
420
|
+
docker compose run --remove-orphans oe-python-template-example openapi --output-format=json
|
421
421
|
echo "Running OE Python Template Example's API container as a daemon ..."
|
422
422
|
docker compose up -d
|
423
423
|
echo "Waiting for the API server to start ..."
|
@@ -350,13 +350,13 @@ Or use docker compose
|
|
350
350
|
The .env is passed through from the host to the Docker container.
|
351
351
|
|
352
352
|
```shell
|
353
|
-
docker compose run oe-python-template-example --help
|
354
|
-
docker compose run oe-python-template-example hello-world
|
355
|
-
docker compose run oe-python-template-example echo --help
|
356
|
-
docker compose run oe-python-template-example echo "Lorem"
|
357
|
-
docker compose run oe-python-template-example echo "Lorem" --json
|
358
|
-
docker compose run oe-python-template-example openapi
|
359
|
-
docker compose run oe-python-template-example openapi --output-format=json
|
353
|
+
docker compose run --remove-orphans oe-python-template-example --help
|
354
|
+
docker compose run --remove-orphans oe-python-template-example hello-world
|
355
|
+
docker compose run --remove-orphans oe-python-template-example echo --help
|
356
|
+
docker compose run --remove-orphans oe-python-template-example echo "Lorem"
|
357
|
+
docker compose run --remove-orphans oe-python-template-example echo "Lorem" --json
|
358
|
+
docker compose run --remove-orphans oe-python-template-example openapi
|
359
|
+
docker compose run --remove-orphans oe-python-template-example openapi --output-format=json
|
360
360
|
echo "Running OE Python Template Example's API container as a daemon ..."
|
361
361
|
docker compose up -d
|
362
362
|
echo "Waiting for the API server to start ..."
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "oe-python-template-example"
|
3
|
-
version = "0.3.
|
3
|
+
version = "0.3.4"
|
4
4
|
description = "🧠 Example project scaffolded and kept up to date with OE Python Template (oe-python-template)."
|
5
5
|
readme = "README.md"
|
6
6
|
authors = [
|
@@ -242,10 +242,12 @@ asyncio_default_fixture_loop_scope = "function"
|
|
242
242
|
env = ["COVERAGE_FILE=.coverage", "COVERAGE_PROCESS_START=pyproject.toml"]
|
243
243
|
markers = [
|
244
244
|
# From Template
|
245
|
-
"no_extras:
|
246
|
-
"scheduled:
|
247
|
-
"sequential:
|
248
|
-
"skip_with_act:
|
245
|
+
"no_extras: Tests that do require no extras installed.",
|
246
|
+
"scheduled: Tests to run on a schedule. They will still be part on non-scheduled test executions.",
|
247
|
+
"sequential: Exclude from parallel test execution.",
|
248
|
+
"skip_with_act: Don't run with act.",
|
249
|
+
"docker: tests That require Docker.",
|
250
|
+
"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.",
|
249
251
|
# Custom
|
250
252
|
# Nothing yet
|
251
253
|
]
|
@@ -264,7 +266,7 @@ source = ["src/"]
|
|
264
266
|
|
265
267
|
|
266
268
|
[tool.bumpversion]
|
267
|
-
current_version = "0.3.
|
269
|
+
current_version = "0.3.4"
|
268
270
|
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
|
269
271
|
serialize = ["{major}.{minor}.{patch}"]
|
270
272
|
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
|