From f9c0600f0200528921c43ccb8a8a44c81825a343 Mon Sep 17 00:00:00 2001 From: John Snow Date: Thu, 27 May 2021 17:17:13 -0400 Subject: python: add .gitignore Ignore *Python* build and package output (build, dist, qemu.egg-info); these files are not created as part of a QEMU build. They are created by running the commands 'python3 setup.py ' when preparing tarballs to upload to e.g. PyPI. Ignore miscellaneous cached python confetti (mypy, pylint, et al) Ignore .idea (pycharm) .vscode, and .venv (pipenv et al). Signed-off-by: John Snow Reviewed-by: Vladimir Sementsov-Ogievskiy Reviewed-by: Cleber Rosa Message-id: 20210527211715.394144-30-jsnow@redhat.com Signed-off-by: John Snow --- python/.gitignore | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 python/.gitignore (limited to 'python/.gitignore') diff --git a/python/.gitignore b/python/.gitignore new file mode 100644 index 0000000..4ed144c --- /dev/null +++ b/python/.gitignore @@ -0,0 +1,15 @@ +# linter/tooling cache +.mypy_cache/ +.cache/ + +# python packaging +build/ +dist/ +qemu.egg-info/ + +# editor config +.idea/ +.vscode/ + +# virtual environments (pipenv et al) +.venv/ -- cgit v1.1