Improve versioning
[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 hardening options in the Linux kernel config
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 zip_safe = true
20 include_package_data = true
21 packages = kconfig_hardened_check
22 setup_requires = setuptools
23
24 [options.entry_points]
25 console_scripts = 
26         kconfig-hardened-check = kconfig_hardened_check:main
27