diff options
Diffstat (limited to 'python/setup.py')
-rwxr-xr-x | python/setup.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/python/setup.py b/python/setup.py new file mode 100755 index 0000000000..2014f81b75 --- /dev/null +++ b/python/setup.py @@ -0,0 +1,23 @@ +#!/usr/bin/env python3 +""" +QEMU tooling installer script +Copyright (c) 2020-2021 John Snow for Red Hat, Inc. +""" + +import setuptools +import pkg_resources + + +def main(): + """ + QEMU tooling installer + """ + + # https://medium.com/@daveshawley/safely-using-setup-cfg-for-metadata-1babbe54c108 + pkg_resources.require('setuptools>=39.2') + + setuptools.setup() + + +if __name__ == '__main__': + main() |