2
This commit is contained in:
parent
9971ff7306
commit
bbe3ffd99b
10
README.md
10
README.md
@ -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 快照(可选)
|
@ -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
0
src/__init__.py
Normal file
2
tests/test_example.py
Normal file
2
tests/test_example.py
Normal file
@ -0,0 +1,2 @@
|
||||
def test_sqrt():
|
||||
print(1111)
|
Loading…
x
Reference in New Issue
Block a user