toml-combine 0.1.4__tar.gz → 0.1.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.
Files changed (21) hide show
  1. {toml_combine-0.1.4 → toml_combine-0.1.5}/PKG-INFO +6 -6
  2. {toml_combine-0.1.4 → toml_combine-0.1.5}/README.md +5 -5
  3. {toml_combine-0.1.4 → toml_combine-0.1.5}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
  4. {toml_combine-0.1.4 → toml_combine-0.1.5}/.github/renovate.json5 +0 -0
  5. {toml_combine-0.1.4 → toml_combine-0.1.5}/.github/workflows/ci.yml +0 -0
  6. {toml_combine-0.1.4 → toml_combine-0.1.5}/.github/workflows/coverage-comment.yml +0 -0
  7. {toml_combine-0.1.4 → toml_combine-0.1.5}/.github/workflows/pr-labels.yml +0 -0
  8. {toml_combine-0.1.4 → toml_combine-0.1.5}/.pre-commit-config.yaml +0 -0
  9. {toml_combine-0.1.4 → toml_combine-0.1.5}/pyproject.toml +0 -0
  10. {toml_combine-0.1.4 → toml_combine-0.1.5}/tests/result.json +0 -0
  11. {toml_combine-0.1.4 → toml_combine-0.1.5}/tests/test.toml +0 -0
  12. {toml_combine-0.1.4 → toml_combine-0.1.5}/tests/test_cli.py +0 -0
  13. {toml_combine-0.1.4 → toml_combine-0.1.5}/tests/test_combiner.py +0 -0
  14. {toml_combine-0.1.4 → toml_combine-0.1.5}/tests/test_lib.py +0 -0
  15. {toml_combine-0.1.4 → toml_combine-0.1.5}/toml_combine/__init__.py +0 -0
  16. {toml_combine-0.1.4 → toml_combine-0.1.5}/toml_combine/__main__.py +0 -0
  17. {toml_combine-0.1.4 → toml_combine-0.1.5}/toml_combine/cli.py +0 -0
  18. {toml_combine-0.1.4 → toml_combine-0.1.5}/toml_combine/combiner.py +0 -0
  19. {toml_combine-0.1.4 → toml_combine-0.1.5}/toml_combine/exceptions.py +0 -0
  20. {toml_combine-0.1.4 → toml_combine-0.1.5}/toml_combine/toml.py +0 -0
  21. {toml_combine-0.1.4 → toml_combine-0.1.5}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: toml-combine
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: A tool for combining complex configurations in TOML format.
5
5
  Author-email: Joachim Jablon <ewjoachim@gmail.com>
6
6
  License-Expression: MIT
@@ -19,10 +19,10 @@ Description-Content-Type: text/markdown
19
19
 
20
20
  # Toml-combine
21
21
 
22
- `toml-combine` is a Python lib and CLI-tool that reads a toml configuration defining
23
- a default configuration and overrides with, and applies those overrides to get
24
- final configurations. Say: you have multiple services, and environments, and you
25
- want to describe them all without repeating the parts that are common to everyone.
22
+ `toml-combine` is a Python lib and CLI-tool that reads a TOML configuration file
23
+ defining a default configuration, overrides, and applies those overrides to get final
24
+ configurations. Let's say: you have multiple services, and environments, and you want to
25
+ describe them all without repeating the parts that are common to everyone.
26
26
 
27
27
  ## Concepts
28
28
 
@@ -55,7 +55,7 @@ service_account = "my-staging-service-account"
55
55
  ### Dimensions
56
56
 
57
57
  Consider all the configurations you want to generate. Each one differs from the others.
58
- Dimensions lets you describe the main "thing" that makes manifests differents, e.g.:
58
+ Dimensions lets you describe the main "thing" that makes the outputs differents, e.g.:
59
59
  `environment` might be `staging` or `production`, region might be `eu` or `us`, and
60
60
  service might be `frontend` or `backend`. Some combinations of dimensions might not
61
61
  exists, for example, maybe there's no `staging` in `eu`.
@@ -1,9 +1,9 @@
1
1
  # Toml-combine
2
2
 
3
- `toml-combine` is a Python lib and CLI-tool that reads a toml configuration defining
4
- a default configuration and overrides with, and applies those overrides to get
5
- final configurations. Say: you have multiple services, and environments, and you
6
- want to describe them all without repeating the parts that are common to everyone.
3
+ `toml-combine` is a Python lib and CLI-tool that reads a TOML configuration file
4
+ defining a default configuration, overrides, and applies those overrides to get final
5
+ configurations. Let's say: you have multiple services, and environments, and you want to
6
+ describe them all without repeating the parts that are common to everyone.
7
7
 
8
8
  ## Concepts
9
9
 
@@ -36,7 +36,7 @@ service_account = "my-staging-service-account"
36
36
  ### Dimensions
37
37
 
38
38
  Consider all the configurations you want to generate. Each one differs from the others.
39
- Dimensions lets you describe the main "thing" that makes manifests differents, e.g.:
39
+ Dimensions lets you describe the main "thing" that makes the outputs differents, e.g.:
40
40
  `environment` might be `staging` or `production`, region might be `eu` or `us`, and
41
41
  service might be `frontend` or `backend`. Some combinations of dimensions might not
42
42
  exists, for example, maybe there's no `staging` in `eu`.
File without changes