Like grep, colorize the output only if stdout is connected to a terminal
[kconfig-hardened-check.git] / setup.py
1 #!/usr/bin/env 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__'])