-
Notifications
You must be signed in to change notification settings - Fork 5
/
.devcontainer.json
35 lines (35 loc) · 1.28 KB
/
.devcontainer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// For format details, see https://containers.dev/implementors/json_reference/.
// For config options, see the README at: https://github.com/devcontainers/templates/tree/main/src/python
{
"name": "TUCAN",
"image": "python:3.12-bookworm",
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"configureZshAsDefaultShell": true
}
},
"customizations": {
"vscode": {
"extensions": [
"ms-toolsai.jupyter",
"ms-python.python",
"ms-python.vscode-pylance",
"KevinRose.vsc-python-indent",
"streetsidesoftware.code-spell-checker",
"tamasfe.even-better-toml",
"eamodio.gitlens",
"GitHub.copilot",
"ms-python.black-formatter",
"ms-python.mypy-type-checker",
"ms-python.flake8"
],
"settings": {
"editor.formatOnSave": true,
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.editor.defaultFormatter": "ms-python.black-formatter"
}
}
},
"postCreateCommand": "pip install --upgrade pip && pip install -e .[dev,drawing]"
}