Files

29 lines
264 B
Plaintext

# Git and environments
.git
.gitignore
.venv
venv
env
# Python caches
__pycache__
*.pyc
*.pyo
*.pyd
.Python
# Local environments and secrets
.env
.env.*
# Linting and testing
.ruff_cache
.pytest_cache
tests/
# Build artifacts
dist/
build/
*.egg-info/
scratch/