X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=setup.py;h=127bfae22b2da9b11104afad21e1d60581004125;hb=35f7574150940bc88eb3192f64c2dbfc650cf3e3;hp=8197fabd6c64bc9d71fc103e3b4c4869b18a1a7e;hpb=100a39e2b01dadd2d27ed805cbe2b4ead7fc8b05;p=kconfig-hardened-check.git diff --git a/setup.py b/setup.py index 8197fab..127bfae 100755 --- a/setup.py +++ b/setup.py @@ -1,12 +1,14 @@ -#!/usr/bin/python3 +#!/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("kconfig_hardened_check/__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()