init yolo repo

This commit is contained in:
2026-08-07 16:04:13 +08:00
commit 2b80e3d380
5 changed files with 30 additions and 0 deletions

10
.gitignore vendored Normal file
View File

@@ -0,0 +1,10 @@
# Python-generated files
__pycache__/
*.py[oc]
build/
dist/
wheels/
*.egg-info
# Virtual environments
.venv

1
.python-version Normal file
View File

@@ -0,0 +1 @@
3.14

0
README.md Normal file
View File

17
pyproject.toml Normal file
View File

@@ -0,0 +1,17 @@
[project]
name = "yolo"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "Kunpeng", email = "mx18782708114@163.com" }
]
requires-python = ">=3.14"
dependencies = []
[project.scripts]
yolo = "yolo:main"
[build-system]
requires = ["uv_build>=0.12.0,<0.13.0"]
build-backend = "uv_build"

2
src/yolo/__init__.py Normal file
View File

@@ -0,0 +1,2 @@
def main() -> None:
print("Hello from yolo!")