# --- Python ---
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/

# --- uv & Virtual Environments ---
.venv/
venv/
env/
.env/
ENV/
# Note: If your venv directory name is different, add it here.

# --- Build System (Hatch) ---
.hatch/

# --- Type Checking ---
.mypy_cache/
.pytype/
.ruff_cache/

# --- Secrets and Configuration ---
# Environment variables - DO NOT COMMIT SENSITIVE DATA
.env
*.env
secrets.yaml
secrets.yml
config.local.yaml
config.local.yml
# Add any other local config files here

# --- IDEs / Editors ---
# VS Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace
# Uncomment the line below to ignore the entire .vscode folder
# .vscode/

# PyCharm
.idea/

# Sublime Text
*.sublime-project
*.sublime-workspace

# Vim
*.swp
*.swo
*~
# Emacs
*#
#*#

# --- OS Generated Files ---
# macOS
.DS_Store
._*
.Spotlight-V100
.Trashes
# Windows
Thumbs.db
ehthumbs.db
Desktop.ini

# --- Logs and Temporary Files ---
*.log
*.log.*
logs/
*.tmp
*.bak
*.patch
*.diff

# --- Node Modules (if using JS tools like some pre-commit hooks) ---
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
package-lock.json # Often committed, but ignore if generated/not primary lock

# --- Project Specific ---
# Example for downloaded Jira attachments (adjust path as needed)
# downloaded_attachments/

# Add any other project-specific files or directories that should not be tracked
# e.g., large data files, generated reports, etc.
# data/
# reports/