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.
32 lines
361 B
32 lines
361 B
# Environnements virtuels |
|
.venv/ |
|
venv/ |
|
|
|
# Cache Python |
|
__pycache__/ |
|
*.py[cod] |
|
*$py.class |
|
|
|
# Artefacts de packaging/build |
|
build/ |
|
dist/ |
|
*.egg-info/ |
|
.eggs/ |
|
|
|
# Outils de test / couverture |
|
.pytest_cache/ |
|
.coverage |
|
.coverage.* |
|
htmlcov/ |
|
|
|
# Type checking / lint cache |
|
.mypy_cache/ |
|
.ruff_cache/ |
|
|
|
# IDE / éditeur |
|
.vscode/ |
|
.idea/ |
|
|
|
# Fichiers système |
|
.DS_Store |
|
Thumbs.db
|
|
|