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