91 lines
1.3 KiB
Plaintext
91 lines
1.3 KiB
Plaintext
# =========================
|
|
# Python bytecode & caches
|
|
# =========================
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# =========================
|
|
# C extensions
|
|
# =========================
|
|
*.so
|
|
|
|
# =========================
|
|
# Distribution / packaging
|
|
# =========================
|
|
.Python
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
.eggs/
|
|
pip-wheel-metadata/
|
|
wheels/
|
|
MANIFEST
|
|
|
|
# =========================
|
|
# Virtual environments
|
|
# =========================
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
env/
|
|
|
|
# =========================
|
|
# Test / coverage outputs
|
|
# =========================
|
|
.pytest_cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
.coverage.xml
|
|
test-results/
|
|
|
|
# =========================
|
|
# Lint / type checking
|
|
# =========================
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
.pyre/
|
|
|
|
# =========================
|
|
# Docs build artifacts
|
|
# =========================
|
|
site/
|
|
docs/_site/
|
|
docs/build/
|
|
|
|
# =========================
|
|
# MkDocs / Sphinx output
|
|
# =========================
|
|
mkdocs.yml
|
|
site/
|
|
.build/
|
|
_doctrees/
|
|
|
|
# =========================
|
|
# IDEs & editors
|
|
# =========================
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*.bak
|
|
*.tmp
|
|
|
|
# =========================
|
|
# OS-specific
|
|
# =========================
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# =========================
|
|
# Logs
|
|
# =========================
|
|
*.log
|
|
|
|
# =========================
|
|
# Local config overrides
|
|
# =========================
|
|
.env
|
|
.env.*
|