ARver/arver/version.py
arcctgx b33e67eb22 align names of Python wrapper functions
Add "get_" prefix to the name of libsndfile_version(). This aligns the
names of all Python wrappers.
2024-03-30 18:32:36 +01:00

10 lines
329 B
Python

"""ARver version string module."""
from arver import APPNAME, VERSION
from arver.audio.properties import get_libsndfile_version
def version_string() -> str:
"""Return full ARver version string, including libsndfile version."""
number = VERSION.lstrip('v')
return f'{APPNAME}-{number} ({get_libsndfile_version()})'