salut les copains

This commit is contained in:
2024-07-19 16:38:14 +02:00
parent 3bd5174ce6
commit e54d41d2e4
11 changed files with 1387 additions and 222 deletions

132
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,132 @@
{
"version": "0.2.4",
"configurations": [
{
"name": "WAPT: install",
"type": "python",
"request": "launch",
"justMyCode": false,
"program": "${config:python.wapt-get}",
"args": [
"install",
"--no-ide",
"${workspaceFolder}"
],
"console": "integratedTerminal",
"linux": {
"sudo": true
},
"osx": {
"sudo": true
},
"python": "${command:python.interpreterPath}",
"pythonArgs": [
"-I"
]
},
{
"name": "WAPT: remove",
"type": "python",
"request": "launch",
"justMyCode": false,
"program": "${config:python.wapt-get}",
"args": [
"remove",
"--no-ide",
"${workspaceFolder}"
],
"console": "integratedTerminal",
"linux": {
"sudo": true
},
"osx": {
"sudo": true
},
"python": "${command:python.interpreterPath}",
"pythonArgs": [
"-I"
]
},
{
"name": "WAPT: uninstall",
"type": "python",
"request": "launch",
"justMyCode": false,
"program": "${config:python.wapt-get}",
"args": [
"uninstall",
"--no-ide",
"${workspaceFolder}"
],
"console": "integratedTerminal",
"linux": {
"sudo": true
},
"osx": {
"sudo": true
},
"python": "${command:python.interpreterPath}",
"pythonArgs": [
"-I"
]
},
{
"name": "WAPT: session-setup",
"type": "python",
"request": "launch",
"justMyCode": false,
"program": "${config:python.wapt-get}",
"args": [
"session-setup",
"--no-ide",
"${workspaceFolder}"
],
"console": "integratedTerminal",
"python": "${command:python.interpreterPath}",
"pythonArgs": [
"-I"
]
},
{
"name": "WAPT: audit",
"type": "python",
"request": "launch",
"justMyCode": false,
"program": "${config:python.wapt-get}",
"args": [
"audit",
"-f",
"--no-ide",
"${workspaceFolder}"
],
"console": "integratedTerminal",
"linux": {
"sudo": true
},
"osx": {
"sudo": true
},
"python": "${command:python.interpreterPath}",
"pythonArgs": [
"-I"
]
},
{
"name": "WAPT: update-package",
"type": "python",
"request": "launch",
"justMyCode": false,
"program": "${config:python.wapt-get}",
"args": [
"update-package-sources",
"--no-ide",
"${workspaceFolder}"
],
"console": "integratedTerminal",
"python": "${command:python.interpreterPath}",
"pythonArgs": [
"-I"
]
}
]
}

13
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,13 @@
{
"python.defaultInterpreterPath": "C:\\Program Files (x86)\\wapt\\Scripts\\python.exe",
"python.pythonPath": "C:\\Program Files (x86)\\wapt\\Scripts\\python.exe",
"python.wapt-get": "C:\\Program Files (x86)\\wapt\\wapt-get.py",
"python.formatting.provider": "black",
"python.formatting.blackArgs":
[
"--line-length",
"150"
],
"editor.insertSpaces": true,
"files.eol": "\n"
}