projects
/
kconfig-hardened-check.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add a check to `_open`
[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__'])