MassageRobot_Dobot/.gitignore

27 lines
312 B
Plaintext

# 忽略 Python 缓存文件和编译文件
*.pyc
__pycache__/
# 忽略虚拟环境
venv/
.env/
.venv/
env/
# 忽略日志、临时文件
*.log
*.tmp
# 忽略 Jupyter 缓存
.ipynb_checkpoints/
# 忽略 VS Code 或 PyCharm 等 IDE 配置
.vscode/
.idea/
# 忽略构建目录
build/
dist/
*.egg-info/
.eggs/