From 9318e032960e6be7ab4456472f6ff2a4d6bb40d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wiktor=20=C5=81azarski?= Date: Thu, 14 Dec 2023 11:47:24 +0000 Subject: [PATCH] Add license information to `setup.py` file. --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 28bf04d..cdd9e59 100644 --- a/setup.py +++ b/setup.py @@ -90,6 +90,7 @@ def load_description() -> str: long_description_content_type="text/markdown", url="https://github.com/worldcoin/open-iris", classifiers=[ + "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", @@ -97,6 +98,7 @@ def load_description() -> str: "Operating System :: OS Independent", ], python_requires=">=3.8", + license="MIT", keywords=["biometrics", "iris recognition"], include_package_data=True, **IRIS_ENV_INSTALLATION_CONFIGS[os.environ[IRIS_ENV_STRING_KEY]],