diff --git a/dploot/entry.py b/dploot/entry.py index d97550a..129b9b0 100755 --- a/dploot/entry.py +++ b/dploot/entry.py @@ -1,4 +1,5 @@ import argparse +import importlib.metadata import logging import sys import traceback @@ -44,8 +45,8 @@ def main() -> None: logger.init() - - parser = argparse.ArgumentParser(description="DPAPI looting remotely in Python", add_help=True) + version = importlib.metadata.version("dploot") + parser = argparse.ArgumentParser(description=f"DPAPI looting remotely in Python.\nVersion {version}", add_help=True) parser.add_argument("-debug", action="store_true", help="Turn DEBUG output ON") diff --git a/pyproject.toml b/pyproject.toml index 7e41988..e048fef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dploot" -version = "2.6.0" +version = "2.6.1" description = "DPAPI looting remotely in Python" readme = "README.md" homepage = "https://github.com/zblurx/dploot"