Description: use setuptools instead of distutils
 distutils has been removed in Python 3.12
Author: Thibaut Paumard <thibaut@debian.org>
Origin: vendor
Bug: https://github.com/LLNL/pyorick/issues/9
Last-Update: 2025-09-11
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 
 from __future__ import print_function
-from distutils.core import setup, Command
+from setuptools import setup, Command
 
 class TestCommand(Command):
   description = "PYorick test/check command"
