-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
25 lines (19 loc) · 738 Bytes
/
__init__.py
File metadata and controls
25 lines (19 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
"""
Toolbox - A comprehensive Python toolbox for data management, processing, and visualization.
Main subpackages:
- datacast: Data casting and collection tools
- resman: Resource management
- vis: Visualization tools
- engines: Engine framework
Utilities, image, and math (io, param, paths, transforms, hist, geom, etc.) are provided by ``algutils``.
"""
__version__ = "0.1.0" # Update this to match pyproject.toml
# Optionally expose commonly used classes at package level
# Uncomment and add as needed:
# from toolbox.datacast import DataCaster, DataCollection
# from algutils.param import YamlModel, TBox
# from toolbox.resman import resman
__all__ = [
"__version__",
# Add commonly used exports here
]