update setup and add debugging

This commit is contained in:
Wlad Meixner 2021-01-09 16:45:09 +01:00 committed by Wlad
parent 5674ec0f07
commit a7c6633ea7
2 changed files with 16 additions and 0 deletions

1
.gitignore vendored
View File

@ -32,6 +32,7 @@ __pycache__/
# C extensions
*.so
tmp
# Distribution / packaging
.Python

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

@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Debug Example",
"type": "python",
"request": "launch",
"program": "./example.py",
"console": "integratedTerminal"
}
]
}