unified_python/README.md
2025-07-18 17:16:42 +08:00

11 lines
501 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

project/
├── src/
│ └── __init__.py
├── tests/ # ✅ 测试目录pytest 自动发现)
│ └── test_example.py
├── .python-version # ✅ 本地虚拟python环境uv venv 创建)
├── main.py # ✅ 主程序
├── pyproject.toml # ✅ 全局配置
├── README.md # ✅ 项目说明(包含安装、使用、发布)
└── uv.lock # ✅ uv 快照(可选)