29 lines
586 B
TOML
29 lines
586 B
TOML
|
|
[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"
|
||
|
|
authors = [{ name = "Hermes Agent" }]
|
||
|
|
license = { text = "MIT" }
|
||
|
|
dependencies = [
|
||
|
|
"firecrawl-py",
|
||
|
|
"openai",
|
||
|
|
"fal-client",
|
||
|
|
"python-dotenv",
|
||
|
|
"fire"
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.scripts]
|
||
|
|
hermes-agent = "run_agent:main"
|
||
|
|
|
||
|
|
[tool.setuptools]
|
||
|
|
py-modules = ["run_agent", "model_tools", "toolsets"]
|
||
|
|
|
||
|
|
[tool.setuptools.packages.find]
|
||
|
|
include = ["tools"]
|