From 59166aba9ff1e2498c148af7c84555e86e2352e5 Mon Sep 17 00:00:00 2001 From: Diederik de Haas Date: Sat, 3 Dec 2022 14:08:38 +0100 Subject: [PATCH] Make explicit that this script does not use any packages The 'snap' directory is for distribution, but not needed for the script to run. For Debian packaging, a `debian` directory is added with a similar purpose. Likely since setuptools version 61, this causes an error, so specify explicitly that this script does not use any packages. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index cebfb43..eee0e66 100644 --- a/setup.py +++ b/setup.py @@ -12,6 +12,7 @@ author='George Filipkin', author_email='botebotebot@gmail.com', license='MIT', + packages=[], scripts=['pulsemixer'], classifiers=[ 'Environment :: Console',