paramflow 0.2.2__tar.gz → 0.2.3__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 (24) hide show
  1. {paramflow-0.2.2/paramflow.egg-info → paramflow-0.2.3}/PKG-INFO +2 -1
  2. {paramflow-0.2.2 → paramflow-0.2.3}/README.md +1 -0
  3. {paramflow-0.2.2 → paramflow-0.2.3/paramflow.egg-info}/PKG-INFO +2 -1
  4. {paramflow-0.2.2 → paramflow-0.2.3}/setup.py +1 -1
  5. {paramflow-0.2.2 → paramflow-0.2.3}/LICENSE +0 -0
  6. {paramflow-0.2.2 → paramflow-0.2.3}/MANIFEST.in +0 -0
  7. {paramflow-0.2.2 → paramflow-0.2.3}/paramflow/__init__.py +0 -0
  8. {paramflow-0.2.2 → paramflow-0.2.3}/paramflow/__pycache__/__init__.cpython-312.pyc +0 -0
  9. {paramflow-0.2.2 → paramflow-0.2.3}/paramflow/__pycache__/convert.cpython-312.pyc +0 -0
  10. {paramflow-0.2.2 → paramflow-0.2.3}/paramflow/__pycache__/frozen.cpython-312.pyc +0 -0
  11. {paramflow-0.2.2 → paramflow-0.2.3}/paramflow/__pycache__/frozen_test.cpython-312-pytest-8.3.4.pyc +0 -0
  12. {paramflow-0.2.2 → paramflow-0.2.3}/paramflow/__pycache__/params.cpython-312.pyc +0 -0
  13. {paramflow-0.2.2 → paramflow-0.2.3}/paramflow/__pycache__/params_test.cpython-312-pytest-8.3.4.pyc +0 -0
  14. {paramflow-0.2.2 → paramflow-0.2.3}/paramflow/__pycache__/parser.cpython-312.pyc +0 -0
  15. {paramflow-0.2.2 → paramflow-0.2.3}/paramflow/convert.py +0 -0
  16. {paramflow-0.2.2 → paramflow-0.2.3}/paramflow/frozen.py +0 -0
  17. {paramflow-0.2.2 → paramflow-0.2.3}/paramflow/params.py +0 -0
  18. {paramflow-0.2.2 → paramflow-0.2.3}/paramflow/parser.py +0 -0
  19. {paramflow-0.2.2 → paramflow-0.2.3}/paramflow.egg-info/SOURCES.txt +0 -0
  20. {paramflow-0.2.2 → paramflow-0.2.3}/paramflow.egg-info/dependency_links.txt +0 -0
  21. {paramflow-0.2.2 → paramflow-0.2.3}/paramflow.egg-info/requires.txt +0 -0
  22. {paramflow-0.2.2 → paramflow-0.2.3}/paramflow.egg-info/top_level.txt +0 -0
  23. {paramflow-0.2.2 → paramflow-0.2.3}/pyproject.toml +0 -0
  24. {paramflow-0.2.2 → paramflow-0.2.3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: paramflow
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Home-page: https://github.com/mduszyk/paramflow
5
5
  Classifier: Programming Language :: Python :: 3
6
6
  Classifier: License :: OSI Approved :: MIT License
@@ -29,6 +29,7 @@ and allows for easy parameter overrides.
29
29
  - **Layered meta-parameters**: `paramflow` configures itself using a layered approach.
30
30
  - **Automatic type conversion**: Converts types during merging based on target parameter types.
31
31
  - **Command-line argument parsing**: Automatically generates an `argparse` parser from parameter definitions.
32
+ - **Nested Configuration**: Allows for nested configuration and merging.
32
33
 
33
34
  ## Installation
34
35
  ```sh
@@ -11,6 +11,7 @@ and allows for easy parameter overrides.
11
11
  - **Layered meta-parameters**: `paramflow` configures itself using a layered approach.
12
12
  - **Automatic type conversion**: Converts types during merging based on target parameter types.
13
13
  - **Command-line argument parsing**: Automatically generates an `argparse` parser from parameter definitions.
14
+ - **Nested Configuration**: Allows for nested configuration and merging.
14
15
 
15
16
  ## Installation
16
17
  ```sh
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: paramflow
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Home-page: https://github.com/mduszyk/paramflow
5
5
  Classifier: Programming Language :: Python :: 3
6
6
  Classifier: License :: OSI Approved :: MIT License
@@ -29,6 +29,7 @@ and allows for easy parameter overrides.
29
29
  - **Layered meta-parameters**: `paramflow` configures itself using a layered approach.
30
30
  - **Automatic type conversion**: Converts types during merging based on target parameter types.
31
31
  - **Command-line argument parsing**: Automatically generates an `argparse` parser from parameter definitions.
32
+ - **Nested Configuration**: Allows for nested configuration and merging.
32
33
 
33
34
  ## Installation
34
35
  ```sh
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='paramflow',
5
- version='0.2.2',
5
+ version='0.2.3',
6
6
  packages=find_packages(),
7
7
  install_requires=[
8
8
  "pyyaml",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes