wexample-filestate-python 0.0.6__tar.gz → 0.0.7__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 (14) hide show
  1. {wexample-filestate-python-0.0.6 → wexample-filestate-python-0.0.7}/PKG-INFO +1 -1
  2. {wexample-filestate-python-0.0.6 → wexample-filestate-python-0.0.7}/setup.py +1 -0
  3. {wexample-filestate-python-0.0.6 → wexample-filestate-python-0.0.7}/wexample_filestate_python/workdir/python_workdir.py +2 -2
  4. {wexample-filestate-python-0.0.6 → wexample-filestate-python-0.0.7}/wexample_filestate_python.egg-info/PKG-INFO +1 -1
  5. {wexample-filestate-python-0.0.6 → wexample-filestate-python-0.0.7}/wexample_filestate_python.egg-info/requires.txt +1 -0
  6. {wexample-filestate-python-0.0.6 → wexample-filestate-python-0.0.7}/README.md +0 -0
  7. {wexample-filestate-python-0.0.6 → wexample-filestate-python-0.0.7}/setup.cfg +0 -0
  8. {wexample-filestate-python-0.0.6 → wexample-filestate-python-0.0.7}/wexample_filestate_python/__init__.py +0 -0
  9. {wexample-filestate-python-0.0.6 → wexample-filestate-python-0.0.7}/wexample_filestate_python/const/__init__.py +0 -0
  10. {wexample-filestate-python-0.0.6 → wexample-filestate-python-0.0.7}/wexample_filestate_python/const/name_pattern.py +0 -0
  11. {wexample-filestate-python-0.0.6 → wexample-filestate-python-0.0.7}/wexample_filestate_python/workdir/__init__.py +0 -0
  12. {wexample-filestate-python-0.0.6 → wexample-filestate-python-0.0.7}/wexample_filestate_python.egg-info/SOURCES.txt +0 -0
  13. {wexample-filestate-python-0.0.6 → wexample-filestate-python-0.0.7}/wexample_filestate_python.egg-info/dependency_links.txt +0 -0
  14. {wexample-filestate-python-0.0.6 → wexample-filestate-python-0.0.7}/wexample_filestate_python.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: wexample-filestate-python
3
- Version: 0.0.6
3
+ Version: 0.0.7
4
4
  Summary: Helpers for Python.
5
5
  Home-page: https://github.com/wexample/python-filestate-python
6
6
  Author: weeger
@@ -19,6 +19,7 @@ setup(
19
19
  'python-dotenv',
20
20
  'pydantic',
21
21
  'wexample-filestate',
22
+ 'wexample-app',
22
23
  ],
23
24
  python_requires='>=3.6',
24
25
  )
@@ -2,7 +2,7 @@ from typing import Optional, List, Type, TYPE_CHECKING
2
2
 
3
3
  from wexample_filestate.config_option.children_file_factory_config_option import ChildrenFileFactoryConfigOption
4
4
  from wexample_filestate.const.globals import NAME_PATTERN_NO_LEADING_DOT
5
- from wexample_wex_addon_app.utils.app_directory_structure import AppDirectoryStructure
5
+ from wexample_app.workdir.app_workdir import AppWorkdir
6
6
  from wexample_config.config_value.callback_render_config_value import CallbackRenderConfigValue
7
7
  from wexample_config.const.types import DictConfig
8
8
  from wexample_config.options_provider.abstract_options_provider import AbstractOptionsProvider
@@ -13,7 +13,7 @@ if TYPE_CHECKING:
13
13
  from wexample_filestate.config_option.mixin.item_config_option_mixin import ItemTreeConfigOptionMixin
14
14
 
15
15
 
16
- class PythonWorkdir(AppDirectoryStructure):
16
+ class PythonWorkdir(AppWorkdir):
17
17
  def get_options_providers(self) -> List[Type["AbstractOptionsProvider"]]:
18
18
  from wexample_filestate.options_provider.default_options_provider import DefaultOptionsProvider
19
19
  from wexample_filestate_git.options_provider.git_options_provider import GitOptionsProvider
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: wexample-filestate-python
3
- Version: 0.0.6
3
+ Version: 0.0.7
4
4
  Summary: Helpers for Python.
5
5
  Home-page: https://github.com/wexample/python-filestate-python
6
6
  Author: weeger
@@ -1,3 +1,4 @@
1
1
  pydantic
2
2
  python-dotenv
3
+ wexample-app
3
4
  wexample-filestate