| 123456789101112131415161718192021222324252627282930313233343536 |
- # Environnement Python
- .venv/
- __pycache__/
- *.pyc
- *.pyo
- *.pyd
- .Python
- *.egg-info/
- dist/
- build/
-
- # Variables d'environnement — NE JAMAIS committer
- .env
-
- # Mypy
- .mypy_cache/
- *.pyi
-
- # Pytest
- .pytest_cache/
- .coverage
- htmlcov/
- reports/
-
- # IDE
- .vscode/settings.json
- .idea/
- *.swp
- *.swo
-
- # OS
- .DS_Store
- Thumbs.db
-
- # Docker
- *.log
|