From 56601ca6bd6d30e69e299c36866902cf4a7487c4 Mon Sep 17 00:00:00 2001 From: Cosmin Ciocan Date: Tue, 2 Jan 2024 11:21:59 +0100 Subject: [PATCH] Add usual python .gitignore items --- .gitignore | 37 ++++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 3d72576..3485fef 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,37 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] + +# Distribution / packaging +bin/ +build/ +develop-eggs/ +dist/ +eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +.tox/ +.coverage +.cache +nosetests.xml +coverage.xml + +# Virtual Environment +*env* + +# Misc +.pytest_cache/ .DS_Store -.idea \ No newline at end of file +.idea