From 878c5d1578b1fb4b9d94dde3167652c79970d0c1 Mon Sep 17 00:00:00 2001 From: 4vun1t <4vun1t@mail.i2p> Date: Sat, 6 Jun 2026 23:00:22 +0200 Subject: [PATCH] Fix pkg_resources ModuleNotFoundError with Wappalyzer - Pin setuptools<82 to ensure pkg_resources is available - Add .gitignore for build artifacts --- .gitignore | 4 ++++ requirements.txt | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e1bb20d --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +build/ +*.egg-info/ +__pycache__/ +*.pyc diff --git a/requirements.txt b/requirements.txt index c91f59c..23a05b3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,4 +2,4 @@ colorama requests argparse python-Wappalyzer -setuptools +setuptools<82