From c198cbc6f17c7b796bbe2c4bb38de26065741444 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Mon, 19 Jun 2023 00:35:10 +0300 Subject: [PATCH] setup: Drop obsolete zip_safe flag More info in the documentation: https://setuptools.pypa.io/en/latest/deprecated/zip_safe.html And fix style by the way. --- setup.cfg | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 1a356bc..8f3186c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -7,7 +7,7 @@ description = A tool for checking the security hardening options of the Linux ke long_description = file: README.md license = GNU General Public License v3 (GPLv3) license_file = LICENSE.txt -classifiers = +classifiers = Development Status :: 5 - Production/Stable License :: OSI Approved :: GNU General Public License v3 (GPLv3) Topic :: Security @@ -16,12 +16,11 @@ classifiers = Programming Language :: Python :: 3 [options] -zip_safe = true include_package_data = true packages = kconfig_hardened_check setup_requires = setuptools [options.entry_points] -console_scripts = +console_scripts = kconfig-hardened-check = kconfig_hardened_check:main -- 2.31.1