From 2069b7000ec001b83f5f29691b3cebfd4bf36285 Mon Sep 17 00:00:00 2001 From: Chris Friedt Date: Mon, 5 May 2025 08:58:25 -0400 Subject: [PATCH] requirements: add setuptools From a fresh installation of Ubuntu 24.04 with build-essential there was an error when following the build instructions in the readme. ``` ModuleNotFoundError: No module named 'pkg_resources' ``` This was due to a missing `setuptools` package. Add `setuptools` to `requirements.txt`. Signed-off-by: Chris Friedt --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 7c40aa7..d62bc19 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ project_generator==0.11.* Jinja2 pyelftools +setuptools