From 48b027d6fa92f1b3dfa3a5b339697421ea9bf7b0 Mon Sep 17 00:00:00 2001 From: Vincenzo Greco Date: Fri, 27 Dec 2024 03:45:37 +0100 Subject: [PATCH] Update setup.py to enhance keywords and add license information --- setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 9912654..abd3168 100644 --- a/setup.py +++ b/setup.py @@ -14,13 +14,15 @@ 'dev': ['pytest', 'pytest-cov'], }, url='https://github.com/Buba98/regex_enumerator', - keywords=['regex', 'regex enumerator', 'regular-expression', 'enumerator', 'string-generation', - 'exhaustive-matching', 'exhaustive-search', 'regex-testing', 'regex-tools', 'string-enumeration', 'data-generation'], + keywords=['regex', 'regex enumerator', 'regular expression', 'enumerator', 'string generation', + 'exhaustive matching', 'exhaustive search', 'regex testing', 'regex tools', 'string enumeration', 'data generation'], long_description=long_description, long_description_content_type="text/markdown", python_requires='>=3.10', classifiers=[ 'Programming Language :: Python :: 3.10', 'Operating System :: OS Independent', + 'License :: OSI Approved :: MIT License', ], + license='MIT', )