- Hermes agent configuration, skills and MCP client wrappers - Hardware Lab Node SSE server with ESP32, PPK2, Xgecu adapters - Olhos-de-Orpheu launcher and sci-bot wrapper scripts - Demo scenario, integration test and orchestrator task definitions - Add local .gitignore for venvs, build outputs and runtime logs
32 lines
654 B
TOML
32 lines
654 B
TOML
[project]
|
||
name = "aurelio-hermes"
|
||
version = "0.1.0"
|
||
description = "Aurelio agent operating system exposed as Hermes skills for the Nous × NVIDIA × Stripe hackathon"
|
||
readme = "README.md"
|
||
requires-python = ">=3.11"
|
||
dependencies = [
|
||
"hermes-agent",
|
||
"mcp>=1.26",
|
||
"fastmcp>=3.0",
|
||
"openai>=1.0",
|
||
"httpx>=0.27",
|
||
"pydantic>=2.0",
|
||
"python-dotenv>=1.0",
|
||
"pyserial>=3.5",
|
||
"stripe>=9.0",
|
||
]
|
||
|
||
[project.optional-dependencies]
|
||
dev = [
|
||
"pytest>=8.0",
|
||
"pytest-asyncio>=0.23",
|
||
"ruff>=0.4",
|
||
]
|
||
|
||
[build-system]
|
||
requires = ["hatchling"]
|
||
build-backend = "hatchling.build"
|
||
|
||
[tool.ruff]
|
||
line-length = 100
|
||
target-version = "py311"
|