config-tree-manager 0.4.0__py3-none-any.whl

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.
@@ -0,0 +1,44 @@
1
+ """config-tree-manager — public API surface.
2
+
3
+ Import the symbols you need directly from this package::
4
+
5
+ from config_tree_manager import ConfigManager, field_meta
6
+ from config_tree_manager import FieldMeta, LoadResult, ValueSource
7
+ from config_tree_manager import ValidationError, PathNotFoundError
8
+
9
+ For a full usage example see the project README.
10
+ """
11
+ from config_tree_manager.manager import ConfigManager
12
+ from config_tree_manager.schema import ConfigSchema, field_meta
13
+ from config_tree_manager.types import (
14
+ ConfigError,
15
+ FieldMeta,
16
+ LoadResult,
17
+ LockConflictError,
18
+ ParseError,
19
+ PathNotFoundError,
20
+ ValidationError,
21
+ ValidationResult,
22
+ ValueSource,
23
+ WarningItem,
24
+ )
25
+
26
+ __all__ = [
27
+ # Exceptions
28
+ "ConfigError",
29
+ # Manager
30
+ "ConfigManager",
31
+ # Schema helpers
32
+ "ConfigSchema",
33
+ # Types
34
+ "FieldMeta",
35
+ "LoadResult",
36
+ "LockConflictError",
37
+ "ParseError",
38
+ "PathNotFoundError",
39
+ "ValidationError",
40
+ "ValidationResult",
41
+ "ValueSource",
42
+ "WarningItem",
43
+ "field_meta",
44
+ ]