cb776f4408e3ad65838a66082ba4a2ac6054d35b
[kconfig-hardened-check.git] / setup.py
1 #!/usr/bin/python3
2
3 from setuptools import setup
4
5 about = {}
6 with open("kernel_hardening_checker/__about__.py") as f:
7     exec(f.read(), about)
8
9 print('v: "{}"'.format(about['__version__']))
10
11 # See the options in setup.cfg
12 setup(version = about['__version__'])