setup.py: use setup() from setuptools instead of deprecated distutils.core

See https://peps.python.org/pep-0632/

This is currently done as a patch in the Debian package.
This commit is contained in:
Alexandre J. Raymond 2025-05-29 11:39:44 -04:00 committed by Dan Smith
parent 70900580f3
commit ffd288561e

View file

@ -1,4 +1,4 @@
from distutils.core import setup
from setuptools import setup
from setuptools import find_packages
setup(name='chirp',