commit ff0bcb38e4e36c36ec5cab46f439c44e80a6178d Author: dingfeng.wong Date: Wed Jul 9 19:41:46 2025 +0800 add 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