30 lines
452 B
Python
30 lines
452 B
Python
"""Init file for gasflux package."""
|
|
|
|
__version__ = "0.2.1" # managed by semantic versioning
|
|
|
|
from . import (
|
|
background,
|
|
cli,
|
|
gas,
|
|
interpolation,
|
|
ml,
|
|
plotting,
|
|
pre_processing,
|
|
processing,
|
|
processing_pipelines,
|
|
reporting,
|
|
)
|
|
|
|
__all__ = [
|
|
"background",
|
|
"cli",
|
|
"gas",
|
|
"interpolation",
|
|
"ml",
|
|
"plotting",
|
|
"pre_processing",
|
|
"processing",
|
|
"processing_pipelines",
|
|
"reporting",
|
|
]
|