config2py 0.1.45__tar.gz → 0.1.46__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 (27) hide show
  1. {config2py-0.1.45 → config2py-0.1.46}/PKG-INFO +26 -1
  2. {config2py-0.1.45 → config2py-0.1.46}/config2py/__init__.py +1 -0
  3. config2py-0.1.46/config2py/codecs.py +723 -0
  4. config2py-0.1.46/config2py/tests/test_codecs.py +378 -0
  5. {config2py-0.1.45 → config2py-0.1.46}/config2py/util.py +1 -1
  6. config2py-0.1.46/pyproject.toml +77 -0
  7. {config2py-0.1.45 → config2py-0.1.46}/setup.cfg +1 -1
  8. config2py-0.1.45/pyproject.toml +0 -84
  9. {config2py-0.1.45 → config2py-0.1.46}/.gitattributes +0 -0
  10. {config2py-0.1.45 → config2py-0.1.46}/.github/workflows/ci.yml +0 -0
  11. {config2py-0.1.45 → config2py-0.1.46}/.gitignore +0 -0
  12. {config2py-0.1.45 → config2py-0.1.46}/LICENSE +0 -0
  13. {config2py-0.1.45 → config2py-0.1.46}/README.md +0 -0
  14. {config2py-0.1.45 → config2py-0.1.46}/config2py/base.py +0 -0
  15. {config2py-0.1.45 → config2py-0.1.46}/config2py/errors.py +0 -0
  16. {config2py-0.1.45 → config2py-0.1.46}/config2py/s_configparser.py +0 -0
  17. {config2py-0.1.45 → config2py-0.1.46}/config2py/scrap/__init__.py +0 -0
  18. {config2py-0.1.45 → config2py-0.1.46}/config2py/sync_store.py +0 -0
  19. {config2py-0.1.45 → config2py-0.1.46}/config2py/tests/__init__.py +0 -0
  20. {config2py-0.1.45 → config2py-0.1.46}/config2py/tests/test_sync_store.py +0 -0
  21. {config2py-0.1.45 → config2py-0.1.46}/config2py/tests/test_tools.py +0 -0
  22. {config2py-0.1.45 → config2py-0.1.46}/config2py/tests/utils_for_testing.py +0 -0
  23. {config2py-0.1.45 → config2py-0.1.46}/config2py/tools.py +0 -0
  24. {config2py-0.1.45 → config2py-0.1.46}/config_store_test.ini +0 -0
  25. {config2py-0.1.45 → config2py-0.1.46}/misc/config2py - demo.ipynb +0 -0
  26. {config2py-0.1.45 → config2py-0.1.46}/misc/config2py - demo.md +0 -0
  27. {config2py-0.1.45 → config2py-0.1.46}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: config2py
3
- Version: 0.1.45
3
+ Version: 0.1.46
4
4
  Summary: Simplified reading and writing configurations from various sources and formats
5
5
  Project-URL: Homepage, https://github.com/i2mint/config2py
6
6
  License: Apache-2.0
@@ -9,6 +9,20 @@ Requires-Python: >=3.10
9
9
  Requires-Dist: dol
10
10
  Requires-Dist: i2
11
11
  Requires-Dist: importlib-resources; python_version < '3.9'
12
+ Provides-Extra: all
13
+ Requires-Dist: jproperties>=2.1.0; extra == 'all'
14
+ Requires-Dist: json5>=0.9.0; extra == 'all'
15
+ Requires-Dist: python-dotenv>=1.0.0; extra == 'all'
16
+ Requires-Dist: pyyaml>=6.0; extra == 'all'
17
+ Requires-Dist: tomli-w>=1.0.0; extra == 'all'
18
+ Requires-Dist: tomli>=2.0.0; (python_version < '3.11') and extra == 'all'
19
+ Provides-Extra: all-codecs
20
+ Requires-Dist: jproperties>=2.1.0; extra == 'all-codecs'
21
+ Requires-Dist: json5>=0.9.0; extra == 'all-codecs'
22
+ Requires-Dist: python-dotenv>=1.0.0; extra == 'all-codecs'
23
+ Requires-Dist: pyyaml>=6.0; extra == 'all-codecs'
24
+ Requires-Dist: tomli-w>=1.0.0; extra == 'all-codecs'
25
+ Requires-Dist: tomli>=2.0.0; (python_version < '3.11') and extra == 'all-codecs'
12
26
  Provides-Extra: dev
13
27
  Requires-Dist: pytest-cov>=4.0; extra == 'dev'
14
28
  Requires-Dist: pytest>=7.0; extra == 'dev'
@@ -16,6 +30,17 @@ Requires-Dist: ruff>=0.1.0; extra == 'dev'
16
30
  Provides-Extra: docs
17
31
  Requires-Dist: sphinx-rtd-theme>=1.0; extra == 'docs'
18
32
  Requires-Dist: sphinx>=6.0; extra == 'docs'
33
+ Provides-Extra: env
34
+ Requires-Dist: python-dotenv>=1.0.0; extra == 'env'
35
+ Provides-Extra: json5
36
+ Requires-Dist: json5>=0.9.0; extra == 'json5'
37
+ Provides-Extra: properties
38
+ Requires-Dist: jproperties>=2.1.0; extra == 'properties'
39
+ Provides-Extra: toml
40
+ Requires-Dist: tomli-w>=1.0.0; extra == 'toml'
41
+ Requires-Dist: tomli>=2.0.0; (python_version < '3.11') and extra == 'toml'
42
+ Provides-Extra: yaml
43
+ Requires-Dist: pyyaml>=6.0; extra == 'yaml'
19
44
  Description-Content-Type: text/markdown
20
45
 
21
46
  # config2py
@@ -24,3 +24,4 @@ from config2py.util import (
24
24
  process_path,
25
25
  )
26
26
  from config2py.sync_store import SyncStore, FileStore, JsonStore, register_extension
27
+ from config2py import codecs # noqa - Make codecs module available