From 6a0782df580dcd979ff2e65560e5b0d66557b241 Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Tue, 27 Jun 2023 16:32:00 +0200 Subject: [PATCH] Use setuptools instead of distutils for setup.py. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 65463f5..892a35d 100755 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 -from distutils.core import setup +from setuptools import setup setup(name = "automanga", version = "1", -- 2.11.0