initial pyproject.toml

This commit is contained in:
scito
2022-12-30 11:14:15 +01:00
parent 82e43172c3
commit 7f5d4b37ee
10 changed files with 181 additions and 76 deletions

View File

@@ -1,5 +1,7 @@
{
"recommendations": [
"ms-python.python"
"ms-python.python",
"mms-python.isort",
"tamasfe.even-better-toml",
]
}

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

@@ -0,0 +1,40 @@
{
// 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: extract_otp_secret_keys.py",
"type": "python",
"request": "launch",
"program": "extract_otp_secret_keys.py",
"args": [
"example_export.txt"
],
"console": "integratedTerminal"
},
{
"name": "Python: extract_otp_secret_keys.py stdin pic",
"type": "python",
"request": "launch",
"program": "extract_otp_secret_keys.py",
"args": [
"-",
"<",
"test/test_googleauth_export.png",
],
"console": "integratedTerminal"
},
{
"name": "Python: extract_otp_secret_keys.py -C",
"type": "python",
"request": "launch",
"program": "extract_otp_secret_keys.py",
"args": [
"-v",
],
"console": "integratedTerminal"
},
]
}