Skip to content

Commit

Permalink
Add get_pypam_version
Browse files Browse the repository at this point in the history
  • Loading branch information
carueda committed Feb 21, 2024
1 parent 62acbd4 commit ad19f7b
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion pypam/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
"""
Main PyPAM module.
"""
__version__ = "0.3.0"

from pypam.dataset import DataSet
from pypam.acoustic_survey import ASA
from pypam.acoustic_file import AcuFile
from pypam.signal import Signal
from pypam.detection import Detection
from pypam.detection import Detection


def get_pypam_version():
"""
Get the version of the pypam package.
"""
return __version__

0 comments on commit ad19f7b

Please sign in to comment.