37 lines
310 B
Text
37 lines
310 B
Text
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
*.egg
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
.eggs/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Type checking
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
|
|
# Linting
|
|
.ruff_cache/
|
|
|
|
# Environment files
|
|
.env
|
|
|
|
# pytest
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# VS Code
|
|
.vscode/
|
|
|
|
# macOS
|
|
.DS_Store
|