diff options
| author | Yuval Adam <_@yuv.al> | 2025-03-06 13:37:00 +0100 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-03-06 13:37:00 +0100 |
| commit | ca7bb72088d2ec17a2ae78cb5d8259cb2eb225f8 (patch) | |
| tree | 26ea20f1114ea47f668a75be5e6eab0b9b69d79f /pyproject.toml | |
| parent | 9ee5a1d4273e5f0166b3f44bd6b040602613f140 (diff) | |
Initial cli and entrypoints
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml index 84ccb86..addf1ff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,15 @@ [project] name = "strangeloop" -version = "0.1.0" +version = "0.0.1" description = "A recursive and self-referential AI agent framework" readme = "README.md" requires-python = ">=3.13" -dependencies = [] +dependencies = [ + "click>=8.1.8", +] + +[project.scripts] +strangeloop = "strangeloop.cli:cli" + +[tool.uv] +package = true
\ No newline at end of file |
