config: 更新项目配置和依赖锁定文件
- 添加docs/CLAUDE*到.gitignore忽略列表 - 添加VS Code配置目录 - 添加uv.lock依赖锁定文件
This commit is contained in:
parent
6adf383f94
commit
a61fdc0437
1
.gitignore
vendored
1
.gitignore
vendored
@ -10,3 +10,4 @@ wheels/
|
||||
.venv
|
||||
.claude
|
||||
dataset/
|
||||
docs/CLAUDE*
|
||||
36
.vscode/launch.json
vendored
Normal file
36
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,36 @@
|
||||
{
|
||||
// 使用 IntelliSense 了解相关属性。
|
||||
// 悬停以查看现有属性的描述。
|
||||
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
|
||||
|
||||
{
|
||||
"name": "Python 调试程序: 当前文件",
|
||||
"type": "debugpy",
|
||||
"request": "launch",
|
||||
"program": "${file}",
|
||||
"console": "integratedTerminal",
|
||||
"python": "${workspaceFolder}/.venv/bin/python"
|
||||
},
|
||||
{
|
||||
"name": "调试 papers_crawler.py",
|
||||
"type": "debugpy",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/papers_crawler.py",
|
||||
"console": "integratedTerminal",
|
||||
"python": "${workspaceFolder}/.venv/bin/python",
|
||||
"args": []
|
||||
},
|
||||
{
|
||||
"name": "调试 papers_crawler.py (指定参数)",
|
||||
"type": "debugpy",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/papers_crawler.py",
|
||||
"console": "integratedTerminal",
|
||||
"python": "${workspaceFolder}/.venv/bin/python",
|
||||
"args": ["--mimic_paper_path", "dataset/mimic.csv", "--parallel", "5"]
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user