Added rudimentary VSCode launch for development
All checks were successful
ydeng/renamebycsv/pipeline/head This commit looks good

This commit is contained in:
Harrison Deng 2023-04-25 09:15:47 -05:00
parent f31b1b2705
commit 7bab8a9436
10 changed files with 38 additions and 1 deletions

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

@ -0,0 +1,23 @@
{
// 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: Module",
"type": "python",
"request": "launch",
"module": "renamebycsv.cli",
"args": [
"${workspaceFolder}/tests/resources/files",
"group\\d+-\\w-(\\d+)\\.txt",
"${workspaceFolder}/tests/resources/groups.csv",
"target",
"replaced",
"-d"
],
"justMyCode": true
}
]
}

View File

@ -1,6 +1,6 @@
[metadata] [metadata]
name = renamebycsv name = renamebycsv
version = 0.0.3 version = 0.0.4
[options] [options]
packages = renamebycsv packages = renamebycsv

View File

@ -0,0 +1 @@
Text

View File

@ -0,0 +1,2 @@
Text

View File

@ -0,0 +1 @@
Text

View File

@ -0,0 +1 @@
Text

View File

@ -0,0 +1 @@
Text

View File

@ -0,0 +1 @@
Text

View File

@ -0,0 +1 @@
Text

View File

@ -0,0 +1,6 @@
target,replaced
9,a
10,b
11,c
12,d
13,e
1 target replaced
2 9 a
3 10 b
4 11 c
5 12 d
6 13 e