Disable pylint too-many-locals, it's not useful for add_kconfig_checks()
[kconfig-hardened-check.git] / setup.py
index 7f317b808d92044ed6dc5f8ad9f76c4d6797d007..519c2942c42dfbeb53759b92828bda509fddaf74 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,12 @@
-#!/usr/bin/python3
+#!/usr/bin/env python3
 
 from setuptools import setup
 
-setup()
+about = {}
+with open("kernel_hardening_checker/__about__.py") as f:
+    exec(f.read(), about)
+
+print('v: "{}"'.format(about['__version__']))
+
+# See the options in setup.cfg
+setup(version = about['__version__'])