Files

119 lines
3.0 KiB
Plaintext

# ------------------------------------------------------------------------------
# Python
# ------------------------------------------------------------------------------
__pycache__/
*.py[cod]
*$py.class
# Compiled extensions
*.so
*.pyd
*.dll
# ------------------------------------------------------------------------------
# Virtual Environments
# ------------------------------------------------------------------------------
.venv/
venv/
env/
ENV/
# ------------------------------------------------------------------------------
# Distribution / Packaging
# ------------------------------------------------------------------------------
build/
dist/
site/
*.egg-info/
.eggs/
pip-wheel-metadata/
# ------------------------------------------------------------------------------
# Testing
# ------------------------------------------------------------------------------
.pytest_cache/
.coverage
.coverage.*
htmlcov/
# ------------------------------------------------------------------------------
# Type Checking
# ------------------------------------------------------------------------------
.mypy_cache/
# ------------------------------------------------------------------------------
# Ruff
# ------------------------------------------------------------------------------
.ruff_cache/
# ------------------------------------------------------------------------------
# MkDocs
# ------------------------------------------------------------------------------
/site/
# ------------------------------------------------------------------------------
# IDEs
# ------------------------------------------------------------------------------
.vscode/
.idea/
# ------------------------------------------------------------------------------
# Operating System
# ------------------------------------------------------------------------------
.DS_Store
Thumbs.db
desktop.ini
# ------------------------------------------------------------------------------
# Logs
# ------------------------------------------------------------------------------
*.log
# ------------------------------------------------------------------------------
# Environment Variables
# ------------------------------------------------------------------------------
.env
.env.*
!.env.example
# ------------------------------------------------------------------------------
# Temporary Files
# ------------------------------------------------------------------------------
*.tmp
*.temp
*.bak
*.swp
*.swo
*~
# ------------------------------------------------------------------------------
# Jupyter
# ------------------------------------------------------------------------------
.ipynb_checkpoints/
# ------------------------------------------------------------------------------
# Coverage Reports
# ------------------------------------------------------------------------------
coverage.xml
# ------------------------------------------------------------------------------
# PyInstaller
# ------------------------------------------------------------------------------
*.manifest
*.spec