It would be great to show the version on the main page.
This can be done here and here
Should be able to import the package version with
from importlib.metadata import PackageNotFoundError, version
try:
__version__ = version("pvnet-app")
except PackageNotFoundError:
__version__ = "v?"