You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
309 B
31 lines
309 B
# Python bytecode and caches |
|
__pycache__/ |
|
*.py[cod] |
|
*$py.class |
|
|
|
# Virtual environments |
|
.venv/ |
|
venv/ |
|
env/ |
|
ENV/ |
|
|
|
# Build and distribution artifacts |
|
dist/ |
|
build/ |
|
*.egg-info/ |
|
|
|
# Tool caches |
|
.pytest_cache/ |
|
.mypy_cache/ |
|
.ruff_cache/ |
|
|
|
# IDE/editor files |
|
.vscode/ |
|
.idea/ |
|
|
|
# OS files |
|
.DS_Store |
|
Thumbs.db |
|
|
|
# Logs |
|
*.log
|
|
|