From 261abba1d2f2774ccbc12cee03179f77db0cd1e0 Mon Sep 17 00:00:00 2001 From: Erik Cederstrand Date: Wed, 20 Aug 2025 09:47:27 +0200 Subject: [PATCH] Use a valid SPDX identifier as license classifier This helps automatic license checkers like pip-licenses to identify the right license for this project --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cbd0343..3e75c3d 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ author='Dustin Oprea', author_email='myselfasunder@gmail.com', url='https://github.com/dsoprea/PyInotify', - license='GPL 2', + license='GPL-2.0-only', packages=setuptools.find_packages(exclude=['tests']), include_package_data=True, zip_safe=False,