From 8155ccfe49d5fff26fc344b5133b0b0771772c9e Mon Sep 17 00:00:00 2001 From: Heiko Joerg Schick Date: Thu, 22 May 2025 20:30:01 +0200 Subject: [PATCH] Add .gitignore file for Python project --- .gitignore | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..81aeb2c --- /dev/null +++ b/.gitignore @@ -0,0 +1,42 @@ +# Python bytecode files +__pycache__/ +*.py[cod] +*$py.class + +# Distribution / packaging +dist/ +build/ +*.egg-info/ +*.egg + +# Virtual environments +venv/ +env/ +.venv/ +.env/ + +# Testing +.pytest_cache/ +.coverage +htmlcov/ +.tox/ +.nox/ +.hypothesis/ + +# IDE specific files +.idea/ +.vscode/ +*.swp +*.swo + +# OS specific files +.DS_Store +Thumbs.db + +# Project specific +output/ +*.log +.openai_api_key + +# Faster Whisper model cache +.cache/