[SUCCESS ] AI summarized git commit message: 🌟 Initialize project structure with Python setup and ignore files

This commit is contained in:
2026-04-11 11:41:47 +08:00
commit 537094894a
5 changed files with 160 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
if __name__ == "__main__":
print("Hello World!")

View File

@@ -0,0 +1,8 @@
[project]
name = "hello-world"
version = "0.1.0"
dependencies = ["requests"]
[project.scripts]
run-web = "hello_world.main:main"