# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: 2025 The Linux Foundation

# Git files
.git
.gitignore
.gitattributes

# Python cache and build artifacts
__pycache__
*.pyc
*.pyo
*.pyd
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# Virtual environments
venv/
.venv/
ENV/
env/
.env

# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store

# Testing and coverage
.pytest_cache/
.coverage
htmlcov/
.tox/
.nox/

# Documentation
docs/_build/
.readthedocs.yml

# CI/CD
.github/
.pre-commit-config.yaml

# Local development files
*.log
.cache/
temp/
tmp/

# OS generated files
Thumbs.db
ehthumbs.db
Desktop.ini

# Package manager files
poetry.lock
Pipfile.lock
requirements*.txt

# Jupyter notebooks
.ipynb_checkpoints

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Misc
*.orig
*.rej
