From 07f6437233057cf7ac31489d58c3d26a24de5b93 Mon Sep 17 00:00:00 2001
From: Padraig Gleeson
Date: Fri, 22 Aug 2025 12:44:25 +0100
Subject: [PATCH] Switch from distutils to setuptools for setup
---
python/setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/python/setup.py b/python/setup.py
index cecebce..89c5dbc 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-from distutils.core import setup
+from setuptools import setup
long_description = open("README.md").read()