From c94b64c7bae1d850d58ca64ab27da483fc3be21e Mon Sep 17 00:00:00 2001 From: Pradeep Bashyal Date: Mon, 12 May 2025 14:41:49 -0500 Subject: [PATCH] Added setuptools to the requirements for Python >= 3.12 --- Makefile | 2 +- requirements.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 95acbaf..16ba077 100644 --- a/Makefile +++ b/Makefile @@ -88,7 +88,7 @@ docker: docker-build ## build a docker image and run the service docker run --name my-project-template -p 8080:8080 my-project-template-service:0.0.1 install: clean ## install the package to the active Python's site-packages - pip install --upgrade pip + pip install --upgrade pip setuptools python setup.py install pip install -r requirements.txt pip install -r requirements-tests.txt diff --git a/requirements.txt b/requirements.txt index b77f536..8e06e41 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,2 @@ +setuptools toml==0.10.2