# 忽略Python的缓存文件夹
__pycache__/

# 忽略虚拟环境文件夹（极其重要！）
venv/
.venv/
env/

# 忽略IDE的配置文件夹
.vscode/
.idea/

# 忽略打包和安装过程中生成的文件夹
*.egg-info/
build/
dist/
wheels/
data/

<<<<<<< Updated upstream
=======
# 忽略测试文件夹
>>>>>>> Stashed changes
tests/