Add GUI runner and packaging docs

This commit is contained in:
thePR0M3TH3AN
2025-07-17 21:21:05 -04:00
parent ecf8f4e722
commit fac31cd99f
4 changed files with 30 additions and 0 deletions

4
src/run_gui.py Normal file
View File

@@ -0,0 +1,4 @@
from seedpass_gui.app import main
if __name__ == "__main__":
main()

View File

@@ -197,3 +197,8 @@ class SeedPassApp(toga.App):
)
self.main_window = None
self.lock_window.show()
def main() -> None: # pragma: no cover - GUI bootstrap
"""Run the BeeWare application."""
SeedPassApp().main_loop()