This commit is contained in:
尹舟 2025-07-18 16:33:49 +08:00
parent 9971ff7306
commit bbe3ffd99b
4 changed files with 17 additions and 2 deletions

View File

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

View File

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

0
src/__init__.py Normal file
View File

2
tests/test_example.py Normal file
View File

@ -0,0 +1,2 @@
def test_sqrt():
print(1111)