commit 0bd11ca63eab43da810415e4c4d1d21bc3d3d98f Author: Masonmason Date: Wed May 14 16:37:15 2025 +0800 first commit 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 = []