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]
|
[project]
|
||||||
name = "unified-python"
|
name = "unified-python"
|
||||||
version = "0.1.0"
|
version = "1.0"
|
||||||
description = "Add your description here"
|
description = "yinzhou的python脚手架"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.11"
|
requires-python = ">=3.11"
|
||||||
dependencies = []
|
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