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