update: add common

This commit is contained in:
tao.chen
2026-07-27 15:37:58 +08:00
parent e56bf0e56b
commit 1c03a32298
8 changed files with 91 additions and 9 deletions
+6 -5
View File
@@ -9,9 +9,10 @@ authors = [
requires-python = ">=3.12"
dependencies = []
[project.scripts]
common = "common:main"
[build-system]
requires = ["uv_build>=0.11.31,<0.12.0"]
build-backend = "uv_build"
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/common"]
+7
View File
@@ -0,0 +1,7 @@
# coding=utf-8
"""
@Time :2026/7/27
@Author :tao.chen
"""
def hello_world():
return 'Hello World!'