From 0bd11ca63eab43da810415e4c4d1d21bc3d3d98f Mon Sep 17 00:00:00 2001 From: Masonmason Date: Wed, 14 May 2025 16:37:15 +0800 Subject: [PATCH] first commit --- README.md | 0 main.py | 6 ++++++ pyproject.toml | 7 +++++++ 3 files changed, 13 insertions(+) create mode 100644 README.md create mode 100644 main.py create mode 100644 pyproject.toml diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/main.py b/main.py new file mode 100644 index 0000000..dc07221 --- /dev/null +++ b/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from cluster4npu!") + + +if __name__ == "__main__": + main() diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..25d7232 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "cluster4npu" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.12" +dependencies = []