Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions mapflow/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
from importlib.metadata import version

from ._animate import Animation, animate, animate_quiver
from ._classic import Animation, PlotModel, animate, plot_da
from ._quiver import QuiverAnimation, animate_quiver, plot_da_quiver
from ._misc import check_ffmpeg
from ._plot import PlotModel, plot_da, plot_da_quiver

check_ffmpeg()

__all__ = ["Animation", "PlotModel", "animate", "plot_da", "plot_da_quiver", "animate_quiver"]
__all__ = [
"Animation",
"PlotModel",
"animate",
"plot_da",
"plot_da_quiver",
"animate_quiver",
"QuiverAnimation",
]

__version__ = version("mapflow")
Loading
Loading