hermes-service/pyproject.toml
yumoqing 7d70f362b2 feat: Initial implementation of hermes-service with multi-user support
- Complete REST API with session management
- Dynamic user creation with isolated environments
- Multi-user isolation using /d/hermesai/users/{user_id}/.hermes structure
- Full command execution capabilities via Hermes CLI
- Health check and status endpoints
- Follows module development specifications
2026-04-21 13:20:10 +08:00

16 lines
334 B
TOML

[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hermes-service"
version = "1.0.0"
description = "Hermes Agent Service Web Application"
dependencies = [
"ahserver",
"bricks-framework"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["hermes-service*"]