paramflow 0.2.4__tar.gz → 0.2.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.
- {paramflow-0.2.4/paramflow.egg-info → paramflow-0.2.5}/PKG-INFO +3 -3
- {paramflow-0.2.4 → paramflow-0.2.5/paramflow.egg-info}/PKG-INFO +3 -3
- {paramflow-0.2.4 → paramflow-0.2.5}/setup.py +2 -2
- {paramflow-0.2.4 → paramflow-0.2.5}/LICENSE +0 -0
- {paramflow-0.2.4 → paramflow-0.2.5}/MANIFEST.in +0 -0
- {paramflow-0.2.4 → paramflow-0.2.5}/README.md +0 -0
- {paramflow-0.2.4 → paramflow-0.2.5}/paramflow/__init__.py +0 -0
- {paramflow-0.2.4 → paramflow-0.2.5}/paramflow/__pycache__/__init__.cpython-312.pyc +0 -0
- {paramflow-0.2.4 → paramflow-0.2.5}/paramflow/__pycache__/convert.cpython-312.pyc +0 -0
- {paramflow-0.2.4 → paramflow-0.2.5}/paramflow/__pycache__/frozen.cpython-312.pyc +0 -0
- {paramflow-0.2.4 → paramflow-0.2.5}/paramflow/__pycache__/frozen_test.cpython-312-pytest-8.3.4.pyc +0 -0
- {paramflow-0.2.4 → paramflow-0.2.5}/paramflow/__pycache__/params.cpython-312.pyc +0 -0
- {paramflow-0.2.4 → paramflow-0.2.5}/paramflow/__pycache__/params_test.cpython-312-pytest-8.3.4.pyc +0 -0
- {paramflow-0.2.4 → paramflow-0.2.5}/paramflow/__pycache__/parser.cpython-312.pyc +0 -0
- {paramflow-0.2.4 → paramflow-0.2.5}/paramflow/convert.py +0 -0
- {paramflow-0.2.4 → paramflow-0.2.5}/paramflow/frozen.py +0 -0
- {paramflow-0.2.4 → paramflow-0.2.5}/paramflow/params.py +0 -0
- {paramflow-0.2.4 → paramflow-0.2.5}/paramflow/parser.py +0 -0
- {paramflow-0.2.4 → paramflow-0.2.5}/paramflow.egg-info/SOURCES.txt +0 -0
- {paramflow-0.2.4 → paramflow-0.2.5}/paramflow.egg-info/dependency_links.txt +0 -0
- {paramflow-0.2.4 → paramflow-0.2.5}/paramflow.egg-info/requires.txt +0 -0
- {paramflow-0.2.4 → paramflow-0.2.5}/paramflow.egg-info/top_level.txt +0 -0
- {paramflow-0.2.4 → paramflow-0.2.5}/pyproject.toml +0 -0
- {paramflow-0.2.4 → paramflow-0.2.5}/setup.cfg +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: paramflow
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.5
|
|
4
|
+
Summary: Flexible and user-friendly parameter and configuration management library.
|
|
4
5
|
Home-page: https://github.com/mduszyk/paramflow
|
|
5
|
-
Author: mduszyk
|
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
|
7
7
|
Classifier: License :: OSI Approved :: MIT License
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
@@ -10,13 +10,13 @@ License-File: LICENSE
|
|
|
10
10
|
Requires-Dist: pyyaml
|
|
11
11
|
Provides-Extra: dotenv
|
|
12
12
|
Requires-Dist: python-dotenv; extra == "dotenv"
|
|
13
|
-
Dynamic: author
|
|
14
13
|
Dynamic: classifier
|
|
15
14
|
Dynamic: description
|
|
16
15
|
Dynamic: description-content-type
|
|
17
16
|
Dynamic: home-page
|
|
18
17
|
Dynamic: provides-extra
|
|
19
18
|
Dynamic: requires-dist
|
|
19
|
+
Dynamic: summary
|
|
20
20
|
|
|
21
21
|
# paramflow
|
|
22
22
|
`paramflow` is a flexible and user-friendly parameter and configuration management library designed for
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: paramflow
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.5
|
|
4
|
+
Summary: Flexible and user-friendly parameter and configuration management library.
|
|
4
5
|
Home-page: https://github.com/mduszyk/paramflow
|
|
5
|
-
Author: mduszyk
|
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
|
7
7
|
Classifier: License :: OSI Approved :: MIT License
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
@@ -10,13 +10,13 @@ License-File: LICENSE
|
|
|
10
10
|
Requires-Dist: pyyaml
|
|
11
11
|
Provides-Extra: dotenv
|
|
12
12
|
Requires-Dist: python-dotenv; extra == "dotenv"
|
|
13
|
-
Dynamic: author
|
|
14
13
|
Dynamic: classifier
|
|
15
14
|
Dynamic: description
|
|
16
15
|
Dynamic: description-content-type
|
|
17
16
|
Dynamic: home-page
|
|
18
17
|
Dynamic: provides-extra
|
|
19
18
|
Dynamic: requires-dist
|
|
19
|
+
Dynamic: summary
|
|
20
20
|
|
|
21
21
|
# paramflow
|
|
22
22
|
`paramflow` is a flexible and user-friendly parameter and configuration management library designed for
|
|
@@ -2,8 +2,8 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name='paramflow',
|
|
5
|
-
version='0.2.
|
|
6
|
-
|
|
5
|
+
version='0.2.5',
|
|
6
|
+
description='Flexible and user-friendly parameter and configuration management library.',
|
|
7
7
|
packages=find_packages(),
|
|
8
8
|
install_requires=[
|
|
9
9
|
"pyyaml",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{paramflow-0.2.4 → paramflow-0.2.5}/paramflow/__pycache__/frozen_test.cpython-312-pytest-8.3.4.pyc
RENAMED
|
File without changes
|
|
File without changes
|
{paramflow-0.2.4 → paramflow-0.2.5}/paramflow/__pycache__/params_test.cpython-312-pytest-8.3.4.pyc
RENAMED
|
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
|