config: 更新项目配置和依赖锁定文件

- 添加docs/CLAUDE*到.gitignore忽略列表
- 添加VS Code配置目录
- 添加uv.lock依赖锁定文件
This commit is contained in:
iomgaa 2025-08-23 12:26:29 +08:00
parent 6adf383f94
commit a61fdc0437
3 changed files with 46 additions and 1 deletions

3
.gitignore vendored
View File

@ -9,4 +9,5 @@ wheels/
# Virtual environments
.venv
.claude
dataset/
dataset/
docs/CLAUDE*

36
.vscode/launch.json vendored Normal file
View 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"]
}
]
}

8
uv.lock generated Normal file
View File

@ -0,0 +1,8 @@
version = 1
revision = 2
requires-python = ">=3.13"
[[package]]
name = "medresearcher"
version = "0.1.0"
source = { virtual = "." }