From ff0bcb38e4e36c36ec5cab46f439c44e80a6178d Mon Sep 17 00:00:00 2001 From: "dingfeng.wong" Date: Wed, 9 Jul 2025 19:41:46 +0800 Subject: [PATCH] add --- .gitignore | 10 ++++++++++ .python-version | 1 + README.md | 0 pyproject.toml | 14 ++++++++++++++ src/elf/__init__.py | 2 ++ src/elf/py.typed | 0 6 files changed, 27 insertions(+) create mode 100644 .gitignore create mode 100644 .python-version create mode 100644 README.md create mode 100644 pyproject.toml create mode 100644 src/elf/__init__.py create mode 100644 src/elf/py.typed diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..505a3b1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +# Python-generated files +__pycache__/ +*.py[oc] +build/ +dist/ +wheels/ +*.egg-info + +# Virtual environments +.venv diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..24ee5b1 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.13 diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..47f29e5 --- /dev/null +++ b/pyproject.toml @@ -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" diff --git a/src/elf/__init__.py b/src/elf/__init__.py new file mode 100644 index 0000000..d234d04 --- /dev/null +++ b/src/elf/__init__.py @@ -0,0 +1,2 @@ +def hello() -> str: + return "Hello from elf!" diff --git a/src/elf/py.typed b/src/elf/py.typed new file mode 100644 index 0000000..e69de29