Initial commit: GasFlux project with core processing pipelines

This commit is contained in:
2026-01-05 09:33:27 +08:00
commit f085d7c5fe
50 changed files with 10634 additions and 0 deletions

29
src/gasflux/__init__.py Normal file
View File

@ -0,0 +1,29 @@
"""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",
]