configaroo 0.4.1__tar.gz → 0.4.2__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 (25) hide show
  1. {configaroo-0.4.1/src/configaroo.egg-info → configaroo-0.4.2}/PKG-INFO +1 -1
  2. {configaroo-0.4.1 → configaroo-0.4.2}/pyproject.toml +1 -1
  3. {configaroo-0.4.1 → configaroo-0.4.2}/src/configaroo/__init__.py +7 -2
  4. {configaroo-0.4.1 → configaroo-0.4.2/src/configaroo.egg-info}/PKG-INFO +1 -1
  5. {configaroo-0.4.1 → configaroo-0.4.2}/LICENSE +0 -0
  6. {configaroo-0.4.1 → configaroo-0.4.2}/README.md +0 -0
  7. {configaroo-0.4.1 → configaroo-0.4.2}/setup.cfg +0 -0
  8. {configaroo-0.4.1 → configaroo-0.4.2}/src/configaroo/configuration.py +0 -0
  9. {configaroo-0.4.1 → configaroo-0.4.2}/src/configaroo/exceptions.py +0 -0
  10. {configaroo-0.4.1 → configaroo-0.4.2}/src/configaroo/loaders/__init__.py +0 -0
  11. {configaroo-0.4.1 → configaroo-0.4.2}/src/configaroo/loaders/json.py +0 -0
  12. {configaroo-0.4.1 → configaroo-0.4.2}/src/configaroo/loaders/toml.py +0 -0
  13. {configaroo-0.4.1 → configaroo-0.4.2}/src/configaroo/py.typed +0 -0
  14. {configaroo-0.4.1 → configaroo-0.4.2}/src/configaroo.egg-info/SOURCES.txt +0 -0
  15. {configaroo-0.4.1 → configaroo-0.4.2}/src/configaroo.egg-info/dependency_links.txt +0 -0
  16. {configaroo-0.4.1 → configaroo-0.4.2}/src/configaroo.egg-info/requires.txt +0 -0
  17. {configaroo-0.4.1 → configaroo-0.4.2}/src/configaroo.egg-info/top_level.txt +0 -0
  18. {configaroo-0.4.1 → configaroo-0.4.2}/tests/test_configuration.py +0 -0
  19. {configaroo-0.4.1 → configaroo-0.4.2}/tests/test_dynamic.py +0 -0
  20. {configaroo-0.4.1 → configaroo-0.4.2}/tests/test_environment.py +0 -0
  21. {configaroo-0.4.1 → configaroo-0.4.2}/tests/test_json.py +0 -0
  22. {configaroo-0.4.1 → configaroo-0.4.2}/tests/test_loaders.py +0 -0
  23. {configaroo-0.4.1 → configaroo-0.4.2}/tests/test_print.py +0 -0
  24. {configaroo-0.4.1 → configaroo-0.4.2}/tests/test_toml.py +0 -0
  25. {configaroo-0.4.1 → configaroo-0.4.2}/tests/test_validation.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: configaroo
3
- Version: 0.4.1
3
+ Version: 0.4.2
4
4
  Summary: Bouncy handling of configuration files
5
5
  Author-email: Geir Arne Hjelle <geirarne@gmail.com>
6
6
  Maintainer-email: Geir Arne Hjelle <geirarne@gmail.com>
@@ -79,7 +79,7 @@ python_version = "3.11"
79
79
  strict = true
80
80
 
81
81
  [tool.bumpver]
82
- current_version = "v0.4.1"
82
+ current_version = "v0.4.2"
83
83
  version_pattern = "vMAJOR.MINOR.PATCH"
84
84
  commit_message = "bump version {old_version} -> {new_version}"
85
85
  tag_message = "{new_version}"
@@ -1,6 +1,10 @@
1
1
  """Bouncy configuration handling."""
2
2
 
3
- from configaroo.configuration import Configuration, print_configuration
3
+ from configaroo.configuration import (
4
+ Configuration,
5
+ find_pyproject_toml,
6
+ print_configuration,
7
+ )
4
8
  from configaroo.exceptions import (
5
9
  ConfigarooError,
6
10
  MissingEnvironmentVariableError,
@@ -12,7 +16,8 @@ __all__ = [
12
16
  "Configuration",
13
17
  "MissingEnvironmentVariableError",
14
18
  "UnsupportedLoaderError",
19
+ "find_pyproject_toml",
15
20
  "print_configuration",
16
21
  ]
17
22
 
18
- __version__ = "0.4.1"
23
+ __version__ = "0.4.2"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: configaroo
3
- Version: 0.4.1
3
+ Version: 0.4.2
4
4
  Summary: Bouncy handling of configuration files
5
5
  Author-email: Geir Arne Hjelle <geirarne@gmail.com>
6
6
  Maintainer-email: Geir Arne Hjelle <geirarne@gmail.com>
File without changes
File without changes
File without changes