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