Skip to content
Open
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
7 changes: 7 additions & 0 deletions frispy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
"""Frispy module."""

from disc import Disc
from equations_of_motion import EOM
from model import Model

# TODO: figure out how to use poetry-bumpversion
# to keep this in line with the pyproject.toml
__version__ = "2.0.0"


__all__ = ["Disc", "EOM", "Model"]
Loading