Skip to content

Commit

Permalink
Merge pull request #116 from lifewatch/115_call_to_get_version
Browse files Browse the repository at this point in the history
Add get_pypam_version
  • Loading branch information
cparcerisas authored Feb 22, 2024
2 parents 62acbd4 + ad19f7b commit f4a30ae
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 f4a30ae

Please sign in to comment.