X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=setup.py;h=853fcae08a39b4b0f6073508da93e6a936c53b2c;hb=HEAD;hp=519c2942c42dfbeb53759b92828bda509fddaf74;hpb=5f9e0ea2c7e08888404f8a00d5d26456d6f37711;p=kconfig-hardened-check.git diff --git a/setup.py b/setup.py index 519c294..127bfae 100755 --- a/setup.py +++ b/setup.py @@ -1,12 +1,14 @@ #!/usr/bin/env python3 -from setuptools import setup +""" +This tool is for checking the security hardening options of the Linux kernel. + +Author: Alexander Popov -about = {} -with open("kernel_hardening_checker/__about__.py") as f: - exec(f.read(), about) +This module performs installing of the kernel-hardening-checker package. +""" -print('v: "{}"'.format(about['__version__'])) +from setuptools import setup # See the options in setup.cfg -setup(version = about['__version__']) +setup()