argmerge 0.0.3__tar.gz → 0.0.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.
Files changed (58) hide show
  1. {argmerge-0.0.3 → argmerge-0.0.4}/PKG-INFO +16 -4
  2. {argmerge-0.0.3 → argmerge-0.0.4}/README.md +5 -2
  3. {argmerge-0.0.3 → argmerge-0.0.4}/pyproject.toml +12 -1
  4. {argmerge-0.0.3 → argmerge-0.0.4}/.coveragerc +0 -0
  5. {argmerge-0.0.3 → argmerge-0.0.4}/.github/workflows/build.yml +0 -0
  6. {argmerge-0.0.3 → argmerge-0.0.4}/.github/workflows/github-actions-demo.yml +0 -0
  7. {argmerge-0.0.3 → argmerge-0.0.4}/.github/workflows/publish-documentation.yml +0 -0
  8. {argmerge-0.0.3 → argmerge-0.0.4}/.github/workflows/publish-to-test-pypi.yaml +0 -0
  9. {argmerge-0.0.3 → argmerge-0.0.4}/.gitignore +0 -0
  10. {argmerge-0.0.3 → argmerge-0.0.4}/LICENSE +0 -0
  11. {argmerge-0.0.3 → argmerge-0.0.4}/docs/examples.md +0 -0
  12. {argmerge-0.0.3 → argmerge-0.0.4}/docs/img/argmerge.svg +0 -0
  13. {argmerge-0.0.3 → argmerge-0.0.4}/docs/img/bracket-logo.svg +0 -0
  14. {argmerge-0.0.3 → argmerge-0.0.4}/docs/img/favicon-.ico +0 -0
  15. {argmerge-0.0.3 → argmerge-0.0.4}/docs/img/favicon.ico +0 -0
  16. {argmerge-0.0.3 → argmerge-0.0.4}/docs/img/initial-description1.svg +0 -0
  17. {argmerge-0.0.3 → argmerge-0.0.4}/docs/img/logo.svg +0 -0
  18. {argmerge-0.0.3 → argmerge-0.0.4}/docs/index.md +0 -0
  19. {argmerge-0.0.3 → argmerge-0.0.4}/docs/stylesheets/extra.css +0 -0
  20. {argmerge-0.0.3 → argmerge-0.0.4}/main.py +0 -0
  21. {argmerge-0.0.3 → argmerge-0.0.4}/mkdocs.yml +0 -0
  22. {argmerge-0.0.3 → argmerge-0.0.4}/src/argmerge/__init__.py +0 -0
  23. {argmerge-0.0.3 → argmerge-0.0.4}/src/argmerge/base.py +0 -0
  24. {argmerge-0.0.3 → argmerge-0.0.4}/src/argmerge/cli.py +0 -0
  25. {argmerge-0.0.3 → argmerge-0.0.4}/src/argmerge/decorator.py +0 -0
  26. {argmerge-0.0.3 → argmerge-0.0.4}/src/argmerge/env.py +0 -0
  27. {argmerge-0.0.3 → argmerge-0.0.4}/src/argmerge/func.py +0 -0
  28. {argmerge-0.0.3 → argmerge-0.0.4}/src/argmerge/json.py +0 -0
  29. {argmerge-0.0.3 → argmerge-0.0.4}/src/argmerge/py.typed +0 -0
  30. {argmerge-0.0.3 → argmerge-0.0.4}/src/argmerge/trace.py +0 -0
  31. {argmerge-0.0.3 → argmerge-0.0.4}/src/argmerge/utils.py +0 -0
  32. {argmerge-0.0.3 → argmerge-0.0.4}/src/argmerge/yaml.py +0 -0
  33. {argmerge-0.0.3 → argmerge-0.0.4}/tests/__init__.py +0 -0
  34. {argmerge-0.0.3 → argmerge-0.0.4}/tests/base/__init__.py +0 -0
  35. {argmerge-0.0.3 → argmerge-0.0.4}/tests/base/test_base.py +0 -0
  36. {argmerge-0.0.3 → argmerge-0.0.4}/tests/cli/__init__.py +0 -0
  37. {argmerge-0.0.3 → argmerge-0.0.4}/tests/cli/test_cli.py +0 -0
  38. {argmerge-0.0.3 → argmerge-0.0.4}/tests/decorator/__init__.py +0 -0
  39. {argmerge-0.0.3 → argmerge-0.0.4}/tests/decorator/test_decorator.py +0 -0
  40. {argmerge-0.0.3 → argmerge-0.0.4}/tests/env/__init__.py +0 -0
  41. {argmerge-0.0.3 → argmerge-0.0.4}/tests/env/test_env.py +0 -0
  42. {argmerge-0.0.3 → argmerge-0.0.4}/tests/func/__init__.py +0 -0
  43. {argmerge-0.0.3 → argmerge-0.0.4}/tests/func/test_func.py +0 -0
  44. {argmerge-0.0.3 → argmerge-0.0.4}/tests/json/__init__.py +0 -0
  45. {argmerge-0.0.3 → argmerge-0.0.4}/tests/json/bad_config.json +0 -0
  46. {argmerge-0.0.3 → argmerge-0.0.4}/tests/json/good_config.json +0 -0
  47. {argmerge-0.0.3 → argmerge-0.0.4}/tests/json/test_json.py +0 -0
  48. {argmerge-0.0.3 → argmerge-0.0.4}/tests/trace/__init__.py +0 -0
  49. {argmerge-0.0.3 → argmerge-0.0.4}/tests/trace/test_trace.py +0 -0
  50. {argmerge-0.0.3 → argmerge-0.0.4}/tests/utils.py +0 -0
  51. {argmerge-0.0.3 → argmerge-0.0.4}/tests/yaml/__init__.py +0 -0
  52. {argmerge-0.0.3 → argmerge-0.0.4}/tests/yaml/bad_config.yaml +0 -0
  53. {argmerge-0.0.3 → argmerge-0.0.4}/tests/yaml/good_config.yaml +0 -0
  54. {argmerge-0.0.3 → argmerge-0.0.4}/tests/yaml/test_yaml.py +0 -0
  55. {argmerge-0.0.3 → argmerge-0.0.4}/threshold.json +0 -0
  56. {argmerge-0.0.3 → argmerge-0.0.4}/threshold.yaml +0 -0
  57. {argmerge-0.0.3 → argmerge-0.0.4}/tox.ini +0 -0
  58. {argmerge-0.0.3 → argmerge-0.0.4}/uv.lock +0 -0
@@ -1,9 +1,18 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: argmerge
3
- Version: 0.0.3
4
- Summary: Add your description here
3
+ Version: 0.0.4
4
+ Summary: Merge arguments from outside your program before they reach your program.
5
5
  Author-email: duck-bongos <billmannd@gmail.com>
6
6
  License-File: LICENSE
7
+ Classifier: Development Status :: 3 - Alpha
8
+ Classifier: Intended Audience :: Developers
9
+ Classifier: Programming Language :: Python
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3 :: Only
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
7
16
  Requires-Python: >=3.10
8
17
  Requires-Dist: loguru>=0.7.3
9
18
  Requires-Dist: mkdocs-material>=9.6.21
@@ -25,8 +34,11 @@ _Customize how program defaults and overrides from config files, environment var
25
34
  |---|---|
26
35
  CI/CD |
27
36
  Package | [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/argmerge.svg?logo=python&label=Python&logoColor=gold)](https://pypi.org/project/hatch-vcs/) |
28
- Meta|[![types - Mypy](https://img.shields.io/badge/types-Mypy-blue.svg)]
29
- ![](./img/argmerge.svg)
37
+ Meta|![types - Mypy](https://img.shields.io/badge/types-Mypy-blue.svg)
38
+
39
+
40
+ ![](https://raw.githubusercontent.com/duck-bongos/py-argmerge/ee26d70afb01489a43741ff9f88347b3ada3c25a/docs/img/argmerge.svg)
41
+ ![](/img/argmerge.svg)
30
42
 
31
43
  We retrieve each possible source of program arguments as Python dictionaries and then perform dictionary updates between each source before passing the final dictionary to the wrapped function. Effectively:
32
44
  ```py
@@ -6,8 +6,11 @@ _Customize how program defaults and overrides from config files, environment var
6
6
  |---|---|
7
7
  CI/CD |
8
8
  Package | [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/argmerge.svg?logo=python&label=Python&logoColor=gold)](https://pypi.org/project/hatch-vcs/) |
9
- Meta|[![types - Mypy](https://img.shields.io/badge/types-Mypy-blue.svg)]
10
- ![](./img/argmerge.svg)
9
+ Meta|![types - Mypy](https://img.shields.io/badge/types-Mypy-blue.svg)
10
+
11
+
12
+ ![](https://raw.githubusercontent.com/duck-bongos/py-argmerge/ee26d70afb01489a43741ff9f88347b3ada3c25a/docs/img/argmerge.svg)
13
+ ![](/img/argmerge.svg)
11
14
 
12
15
  We retrieve each possible source of program arguments as Python dictionaries and then perform dictionary updates between each source before passing the final dictionary to the wrapped function. Effectively:
13
16
  ```py
@@ -1,11 +1,22 @@
1
1
  [project]
2
2
  name = "argmerge"
3
- description = "Add your description here"
3
+ description = "Merge arguments from outside your program before they reach your program."
4
4
  readme = "README.md"
5
5
  authors = [
6
6
  { name = "duck-bongos", email = "billmannd@gmail.com" }
7
7
  ]
8
8
  requires-python = ">=3.10"
9
+ classifiers = [
10
+ "Development Status :: 3 - Alpha",
11
+ "Intended Audience :: Developers",
12
+ "Programming Language :: Python",
13
+ "Programming Language :: Python :: 3",
14
+ "Programming Language :: Python :: 3 :: Only",
15
+ "Programming Language :: Python :: 3.10",
16
+ "Programming Language :: Python :: 3.11",
17
+ "Programming Language :: Python :: 3.12",
18
+ "Programming Language :: Python :: 3.13",
19
+ ]
9
20
  dependencies = [
10
21
  "loguru>=0.7.3",
11
22
  "mkdocs-material>=9.6.21",
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
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
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