suna/pyproject.toml

35 lines
785 B
TOML
Raw Normal View History

2024-10-06 01:04:15 +08:00
[tool.poetry]
name = "agentpress"
version = "0.1.0"
description = "A set of tools and abstractions for building AI agents"
authors = ["marko-kraemer <markokraemer.mail@gmail.com>"]
readme = "README.md"
packages = [
2024-10-10 22:21:39 +08:00
{ include = "agentpress" },
2024-10-06 01:04:15 +08:00
]
[tool.poetry.dependencies]
python = "^3.12"
streamlit = "^1.37.1"
streamlit-quill = "^0.0.3"
sqlalchemy = "^2.0.32"
pydantic-settings = "^2.5.2"
aiosqlite = "^0.20.0"
greenlet = "^3.0.3"
python-dotenv = "^1.0.1"
litellm = "^1.44.4"
pytest = "^8.3.2"
pytest-asyncio = "^0.24.0"
agentops = "^0.3.10"
2024-10-08 03:13:11 +08:00
sseclient-py = "1.7.2"
fastapi = "^0.115.0"
sse-starlette = "^2.1.3"
2024-10-06 01:04:15 +08:00
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-asyncio = "^0.24.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"