2025-10-01 23:29:25 +00:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools>=61.0"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "hermes-agent"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "AI agent with advanced tool-calling and toolsets"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
requires-python = ">=3.10"
|
2026-01-29 22:36:07 +00:00
|
|
|
authors = [{ name = "Nous Research" }]
|
2025-10-01 23:29:25 +00:00
|
|
|
license = { text = "MIT" }
|
|
|
|
|
dependencies = [
|
2026-01-29 22:36:07 +00:00
|
|
|
# Core
|
2025-10-01 23:29:25 +00:00
|
|
|
"openai",
|
|
|
|
|
"python-dotenv",
|
2026-01-29 22:36:07 +00:00
|
|
|
"fire",
|
|
|
|
|
"httpx",
|
|
|
|
|
"rich",
|
|
|
|
|
"tenacity",
|
|
|
|
|
"pyyaml",
|
|
|
|
|
"requests",
|
|
|
|
|
"jinja2",
|
|
|
|
|
"pydantic>=2.0",
|
2026-02-07 00:05:04 +00:00
|
|
|
# Interactive CLI (prompt_toolkit is used directly by cli.py)
|
|
|
|
|
"prompt_toolkit",
|
2026-01-29 22:36:07 +00:00
|
|
|
# Tools
|
|
|
|
|
"firecrawl-py",
|
|
|
|
|
"fal-client",
|
2026-02-14 16:08:14 -08:00
|
|
|
# Text-to-speech (Edge TTS is free, no API key needed)
|
|
|
|
|
"edge-tts",
|
2026-01-29 22:36:07 +00:00
|
|
|
# mini-swe-agent deps (terminal tool)
|
|
|
|
|
"litellm>=1.75.5",
|
|
|
|
|
"typer",
|
|
|
|
|
"platformdirs",
|
2025-10-01 23:29:25 +00:00
|
|
|
]
|
|
|
|
|
|
2026-01-29 22:36:07 +00:00
|
|
|
[project.optional-dependencies]
|
2026-02-07 00:05:04 +00:00
|
|
|
modal = ["swe-rex[modal]>=1.4.0"]
|
2026-01-29 22:36:07 +00:00
|
|
|
dev = ["pytest", "pytest-asyncio"]
|
2026-02-07 00:05:04 +00:00
|
|
|
messaging = ["python-telegram-bot>=20.0", "discord.py>=2.0", "aiohttp>=3.9.0"]
|
2026-02-02 19:01:51 -08:00
|
|
|
cron = ["croniter"]
|
2026-02-02 19:13:41 -08:00
|
|
|
cli = ["simple-term-menu"]
|
2026-02-14 16:08:14 -08:00
|
|
|
tts-premium = ["elevenlabs"]
|
2026-02-07 21:11:01 +00:00
|
|
|
all = [
|
|
|
|
|
"hermes-agent[modal]",
|
|
|
|
|
"hermes-agent[messaging]",
|
|
|
|
|
"hermes-agent[cron]",
|
|
|
|
|
"hermes-agent[cli]",
|
|
|
|
|
"hermes-agent[dev]",
|
2026-02-14 16:08:14 -08:00
|
|
|
"hermes-agent[tts-premium]",
|
2026-02-07 21:11:01 +00:00
|
|
|
]
|
2026-01-29 22:36:07 +00:00
|
|
|
|
2025-10-01 23:29:25 +00:00
|
|
|
[project.scripts]
|
2026-02-02 19:01:51 -08:00
|
|
|
hermes = "hermes_cli.main:main"
|
2025-10-01 23:29:25 +00:00
|
|
|
hermes-agent = "run_agent:main"
|
|
|
|
|
|
|
|
|
|
[tool.setuptools]
|
2026-02-02 19:01:51 -08:00
|
|
|
py-modules = ["run_agent", "model_tools", "toolsets", "batch_runner", "trajectory_compressor", "toolset_distributions", "cli"]
|
2025-10-01 23:29:25 +00:00
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
2026-02-02 19:01:51 -08:00
|
|
|
include = ["tools", "hermes_cli", "gateway", "cron"]
|