From 30850b653078e28f1952eb7ea03058cc8376fdf6 Mon Sep 17 00:00:00 2001 From: Jeroen Oudshoorn Date: Tue, 23 Jan 2024 11:42:47 +0100 Subject: [PATCH] Added hcxtools as installed package. --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 47e21bb2..b29a12ec 100644 --- a/setup.py +++ b/setup.py @@ -87,7 +87,10 @@ setup(name='pwnagotchi', author_email='evilsocket@gmail.com', url='https://pwnagotchi.ai/', license='GPL', - install_requires=required, + install_requires=[ + required, + "hcxtools" + ], cmdclass={ "install": CustomInstall, },