76 lines
698 B
Plaintext
76 lines
698 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
venv-fresh/
|
|
ENV/
|
|
env/
|
|
.venv/
|
|
|
|
# IDEs
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.project
|
|
.pydevproject
|
|
.settings/
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
|
|
# Linting
|
|
.ruff_cache/
|
|
.mypy_cache/
|
|
|
|
# macOS
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
|
|
# Build artifacts
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Receipts (local only - don't commit test receipts)
|
|
receipts/
|
|
|
|
# Root files (generated)
|
|
ROOT.*.txt
|
|
|
|
# Secrets
|
|
*.key
|
|
*.pem
|
|
secrets/
|
|
.env
|
|
.env.local
|
|
keys/*
|
|
|
|
# But keep the keys directory structure
|
|
!keys/.gitkeep
|