commit 471baa90dadd4152ac65dd304920c8e09cba15ea Author: cruld Date: Sun Mar 30 23:01:19 2025 +0800 Initial commit diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..e4fba21 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.12 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..1596cb4 --- /dev/null +++ b/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from agno-notebooks!") + + +if __name__ == "__main__": + main() diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..e3b0a82 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "agno-notebooks" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.12" +dependencies = []