-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
28 lines (26 loc) · 886 Bytes
/
__init__.py
File metadata and controls
28 lines (26 loc) · 886 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
25
26
27
28
# Version of the package
# DO NOT MODIFY MANUALLY
# This will be updated by `bumpver` command.
# - Make sure to commit all changes first before running `bumpver`.
# - Run `bumpver update --[minor|major|patch]`
__version__ = "1.27.0"
# Re-exporting symbols
from _lib import Pipeline as Pipeline
from _lib import PipelineFactory as PipelineFactory
from _lib import PipelineFactoryInterface as PipelineFactoryInterface
from _lib import PipelineInterface as PipelineInterface
from _lib import Processor as Processor
from _lib import ProcessorInterface as ProcessorInterface
from _lib import Stage as Stage
from _lib import StageInterface as StageInterface
# pyright: reportUnsupportedDunderAll=false
__all__ = (
"Pipeline",
"PipelineFactory",
"PipelineFactoryInterface",
"PipelineInterface",
"Processor",
"ProcessorInterface",
"Stage",
"StageInterface",
)