This commit is contained in:
dingfeng.wong
2025-07-09 19:41:46 +08:00
commit ff0bcb38e4
6 changed files with 27 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
# Python-generated files
__pycache__/
*.py[oc]
build/
dist/
wheels/
*.egg-info
# Virtual environments
.venv
+1
View File
@@ -0,0 +1 @@
3.13
View File
+14
View File
@@ -0,0 +1,14 @@
[project]
name = "elf"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "dingfeng.wong", email = "dingfeng.wong@okg.com" }
]
requires-python = ">=3.13"
dependencies = []
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
+2
View File
@@ -0,0 +1,2 @@
def hello() -> str:
return "Hello from elf!"
View File