29 lines
234 B
Plaintext
29 lines
234 B
Plaintext
# OS / Editor
|
|
.DS_Store
|
|
.vscode/.history/
|
|
*.swp
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyd
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# Virtualenv
|
|
.venv/
|
|
|
|
# Packaging
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
|
|
# Env
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Logs
|
|
*.log
|