From 5efa65ea3e41530186025002c80d4ed34fe6d07a Mon Sep 17 00:00:00 2001 From: Daniel Morozoff Date: Sun, 27 Jul 2025 23:04:52 +0100 Subject: [PATCH] [Fix] missing setuptools import in the setup.py file --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 2d22314..015f49a 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,5 @@ +import setuptools + with open("README.md", "r") as fh: long_description = fh.read()