setup: Drop obsolete zip_safe flag
[kconfig-hardened-check.git] / setup.cfg
1 [metadata]
2 name = kconfig-hardened-check
3 author = Alexander Popov
4 author_email = alex.popov@linux.com
5 home_page = https://github.com/a13xp0p0v/kconfig-hardened-check
6 description = A tool for checking the security hardening options of the Linux kernel
7 long_description = file: README.md
8 license = GNU General Public License v3 (GPLv3)
9 license_file = LICENSE.txt
10 classifiers =
11         Development Status :: 5 - Production/Stable
12         License :: OSI Approved :: GNU General Public License v3 (GPLv3)
13         Topic :: Security
14         Operating System :: POSIX :: Linux
15         Environment :: Console
16         Programming Language :: Python :: 3
17
18 [options]
19 include_package_data = true
20 packages = kconfig_hardened_check
21 setup_requires = setuptools
22
23 [options.entry_points]
24 console_scripts =
25         kconfig-hardened-check = kconfig_hardened_check:main
26