From: Michael R. Crusoe <crusoe@debian.org>
Subject: Use setuptools instead of distutils

Distutils was removed from Python 3.12

--- metastudent.orig/setup.py
+++ metastudent/setup.py
@@ -1,6 +1,6 @@
 #!/usr/bin/python
 
-from distutils.core import setup
+from setuptools import setup
 from subprocess import Popen, PIPE
 import sys
 from metastudentPkg.version import VERSION
