mirror of
https://github.com/arthur-pbty/QCM_physique.git
synced 2026-06-03 15:07:33 +02:00
36 lines
337 B
Plaintext
36 lines
337 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.so
|
|
.Python
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
env/
|
|
|
|
# Local environment and secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Local database and runtime files
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# IDE/editor
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Build/distribution
|
|
build/
|
|
dist/
|
|
*.egg-info/
|