diff options
author | John Snow <jsnow@redhat.com> | 2021-06-29 17:43:10 -0400 |
---|---|---|
committer | John Snow <jsnow@redhat.com> | 2021-06-30 21:54:04 -0400 |
commit | 7f179082638efe920748b5243423bdcaed3d42ef (patch) | |
tree | 2e9cac62ce88b8062a1818e7b90dd7ba84c6e582 /python/qemu/qmp | |
parent | 00376d1345475fb3613a0d58584f161cd870ea90 (diff) | |
download | qemu-7f179082638efe920748b5243423bdcaed3d42ef.zip qemu-7f179082638efe920748b5243423bdcaed3d42ef.tar.gz qemu-7f179082638efe920748b5243423bdcaed3d42ef.tar.bz2 |
python: expose typing information via PEP 561
https://www.python.org/dev/peps/pep-0561/#specification
Create 'py.typed' files in each subpackage that indicate to mypy that
this is a typed module, so that users of any of these packages can use
mypy to check their code as well.
Note: Theoretically it's possible to ditch MANIFEST.in in favor of using
package_data in setup.cfg, but I genuinely could not figure out how to
get it to include things from the *source root* into the *package root*;
only how to include things from each subpackage. I tried!
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Willian Rampazzo <willianr@redhat.com>
Reviewed-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
Message-id: 20210629214323.1329806-3-jsnow@redhat.com
Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'python/qemu/qmp')
-rw-r--r-- | python/qemu/qmp/py.typed | 0 |
1 files changed, 0 insertions, 0 deletions
diff --git a/python/qemu/qmp/py.typed b/python/qemu/qmp/py.typed new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/python/qemu/qmp/py.typed |