From a9e9b5183cc2177dba0f65bfcc6651131aa9d820 Mon Sep 17 00:00:00 2001 From: Erik Cederstrand Date: Wed, 20 Aug 2025 09:45:43 +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 | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 9c5b381..44b44f2 100644 --- a/setup.py +++ b/setup.py @@ -7,6 +7,7 @@ description='A series of convenience functions to make basic image processing functions such as translation, rotation, resizing, skeletonization, displaying Matplotlib images, sorting contours, detecting edges, and much more easier with OpenCV and both Python 2.7 and Python 3.', author='Adrian Rosebrock', author_email='adrian@pyimagesearch.com', + license="MIT", url='https://github.com/jrosebr1/imutils', download_url='https://github.com/jrosebr1/imutils/tarball/0.1', keywords=['computer vision', 'image processing', 'opencv', 'matplotlib'],