Initial commit: GasFlux project with core processing pipelines
This commit is contained in:
29
src/gasflux/__init__.py
Normal file
29
src/gasflux/__init__.py
Normal 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",
|
||||
]
|
||||
Reference in New Issue
Block a user