X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;ds=sidebyside;f=setup.py;h=853fcae08a39b4b0f6073508da93e6a936c53b2c;hb=03863c01dccde72aefe8f4561c744af52710190a;hp=7f317b808d92044ed6dc5f8ad9f76c4d6797d007;hpb=18c23c0e80ec6317566a282d29f8fc65ca262f54;p=kconfig-hardened-check.git diff --git a/setup.py b/setup.py index 7f317b8..853fcae 100755 --- 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__'])