Skip to content

Commit c7e0260

Browse files
committed
add devcontainer
1 parent 97b41ab commit c7e0260

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "paramz",
3+
"image": "mcr.microsoft.com/devcontainers/python:1-3.13-bullseye",
4+
"customizations": {
5+
"vscode": {
6+
"extensions": [
7+
"ms-python.python",
8+
"ms-python.debugpy"
9+
],
10+
"settings": {
11+
"python.defaultInterpreterPath": "/usr/local/bin/python",
12+
"python.testing.pytestEnabled": true,
13+
"python.testing.unittestEnabled": false
14+
}
15+
}
16+
},
17+
"postCreateCommand": "python -m pip install --upgrade pip && python -m pip install -e '.[test,docs,notebook]' nose",
18+
"remoteUser": "vscode"
19+
}

0 commit comments

Comments
 (0)