This commit is contained in:
尹舟 2025-07-18 17:16:42 +08:00
parent bbe3ffd99b
commit 29c5325038
2 changed files with 8 additions and 5 deletions

View File

@ -1,6 +1,6 @@
project/
├── src/
└── __init__.py
│ └── __init__.py
├── tests/ # ✅ 测试目录pytest 自动发现)
│ └── test_example.py
├── .python-version # ✅ 本地虚拟python环境uv venv 创建)

View File

@ -1,10 +1,13 @@
[index]
url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
[project]
name = "unified-python"
version = "1.0"
description = "yinzhou的python脚手架"
readme = "README.md"
requires-python = ">=3.11"
dependencies = []
dependencies = [
"fastapi>=0.116.1",
]
[tool.uv]
index-url = "https://pypi.tuna.tsinghua.edu.cn/simple/"