xref: /openbmc/qemu/python/setup.py (revision 1d76437b45ab9982307b95d325d627f7b6f06088)
1#!/usr/bin/env python3
2"""
3QEMU tooling installer script
4Copyright (c) 2020-2021 John Snow for Red Hat, Inc.
5"""
6
7import setuptools
8import pkg_resources
9
10
11def main():
12    """
13    QEMU tooling installer
14    """
15
16    # https://medium.com/@daveshawley/safely-using-setup-cfg-for-metadata-1babbe54c108
17    pkg_resources.require('setuptools>=39.2')
18
19    setuptools.setup()
20
21
22if __name__ == '__main__':
23    main()
24