setup: Fix the warning "Package would be ignored"
[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 setup_requires = setuptools
20 packages = find_namespace:
21 include_package_data = true
22
23 [options.packages.find]
24 where = kconfig_hardened_check
25
26 [options.entry_points]
27 console_scripts =
28         kconfig-hardened-check = kconfig_hardened_check:main
29