Improve versioning
[kconfig-hardened-check.git] / setup.py
1 #!/usr/bin/python3
2
3 from setuptools import setup
4
5 about = {}
6 with open("kconfig_hardened_check/__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__'])