From ec54a52281faeb54feac1ecb32c2f9c836da6a6e Mon Sep 17 00:00:00 2001 From: Erik Cederstrand Date: Thu, 2 Sep 2021 14:00:58 +0200 Subject: [PATCH] Use official OSI name in the license metadata This makes it easier for automatic license checkers to verify the license of this package. --- openapi_schema_validator/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openapi_schema_validator/__init__.py b/openapi_schema_validator/__init__.py index 826d87e..adc3b96 100644 --- a/openapi_schema_validator/__init__.py +++ b/openapi_schema_validator/__init__.py @@ -7,6 +7,6 @@ __email__ = 'maciag.artur@gmail.com' __version__ = '0.1.5' __url__ = 'https://github.com/p1c2u/openapi-schema-validator' -__license__ = 'BSD 3-Clause License' +__license__ = '3-clause BSD License' __all__ = ['validate', 'OAS30Validator', 'oas30_format_checker']