From c28097a347125ec3d24fa0afb9d07e6246739044 Mon Sep 17 00:00:00 2001 From: Marcel Stimberg Date: Wed, 13 Nov 2024 17:45:07 +0100 Subject: [PATCH] Remove setuptools from runtime dependencies --- README.md | 1 - pyproject.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/README.md b/README.md index 89de6d90e..461dc6bc3 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,6 @@ The following packages need to be installed to use Brian 2 (cf. [`pyproject.toml * Cython >= 0.29.21 * PyParsing * Jinja2 >= 2.7 -* setuptools >= 61 * py-cpuinfo (only required on Windows) For full functionality, you might also want to install: diff --git a/pyproject.toml b/pyproject.toml index a2b31ed7c..26fee8413 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,6 @@ dependencies = [ 'pyparsing', 'jinja2>=2.7', 'py-cpuinfo;platform_system=="Windows"', - 'setuptools>=61', 'packaging', ] dynamic = ["version", "readme"]