diff options
| author | Yuval Adam <_@yuv.al> | 2025-03-06 13:21:38 +0100 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-03-06 13:21:38 +0100 |
| commit | 9ee5a1d4273e5f0166b3f44bd6b040602613f140 (patch) | |
| tree | fc00c56df9603fcdc16c6f7b565367b2fef0313a | |
| parent | 0f6e7ab3d2d51afd5b1c8f7a88843bf9a4f0a9b2 (diff) | |
Initial project
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | .python-version | 1 | ||||
| -rw-r--r-- | hello.py | 6 | ||||
| -rw-r--r-- | pyproject.toml | 7 |
4 files changed, 15 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ed8ebf5 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +__pycache__
\ No newline at end of file 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/hello.py b/hello.py new file mode 100644 index 0000000..6f29093 --- /dev/null +++ b/hello.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from strangeloop!") + + +if __name__ == "__main__": + main() diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..84ccb86 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "strangeloop" +version = "0.1.0" +description = "A recursive and self-referential AI agent framework" +readme = "README.md" +requires-python = ">=3.13" +dependencies = [] |
