suna/pyproject.toml

42 lines
1.1 KiB
TOML
Raw Normal View History

2024-10-06 01:04:15 +08:00
[tool.poetry]
name = "agentpress"
2024-11-12 06:58:12 +08:00
version = "0.1.8"
2024-11-02 07:05:29 +08:00
description = "Building blocks for AI Agents"
authors = ["marko-kraemer <mail@markokraemer.com>"]
2024-10-06 01:04:15 +08:00
readme = "README.md"
2024-11-01 05:26:30 +08:00
license = "MIT"
homepage = "https://github.com/kortix-ai/agentpress"
repository = "https://github.com/kortix-ai/agentpress"
keywords = ["llm", "ai", "agents", "ai agents", "ai agent framework"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
2024-10-06 01:04:15 +08:00
[tool.poetry.dependencies]
2024-11-02 09:54:36 +08:00
python = "^3.9"
2024-10-06 01:04:15 +08:00
streamlit-quill = "^0.0.3"
python-dotenv = "^1.0.1"
litellm = "^1.44.4"
agentops = "^0.3.10"
2024-11-02 07:05:29 +08:00
click = "^8.1.7"
questionary = "^2.0.1"
2024-11-03 02:28:11 +08:00
requests = "^2.31.0"
packaging = "^23.2"
2024-11-06 20:39:33 +08:00
setuptools = "^75.3.0"
pytest = "^8.3.3"
pytest-asyncio = "^0.24.0"
2024-11-02 07:05:29 +08:00
[tool.poetry.scripts]
2024-11-03 02:28:11 +08:00
agentpress = "agentpress.cli:main"
2024-11-02 09:42:18 +08:00
[[tool.poetry.packages]]
2024-11-03 02:28:11 +08:00
include = "agentpress"
2024-10-06 01:04:15 +08:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"