setup: fix "The license_file parameter is deprecated"
[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_files = 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 setup_requires = setuptools
20 packages =
21         kconfig_hardened_check
22         kconfig_hardened_check.config_files
23         kconfig_hardened_check.config_files.defconfigs
24         kconfig_hardened_check.config_files.distros
25         kconfig_hardened_check.config_files.kspp-recommendations
26 include_package_data = true
27
28 [options.entry_points]
29 console_scripts =
30         kconfig-hardened-check = kconfig_hardened_check:main
31