This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
shira-hermes/pyproject.toml
T
chaim 40877d83d2 fix: add hatch build config for pip install from pyproject.toml
Hatchling couldn't find the package directory (expected shira_hermes/).
Added [tool.hatch.build.targets.wheel] packages to include api/ and
mcp_server/ directories.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-13 20:23:02 +00:00

27 lines
560 B
TOML

[project]
name = "shira-hermes"
version = "0.1.0"
description = "Shira AI Assistant — Hermes Agent backend for EspoCRM SmartAssistant"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"httpx>=0.27.0",
"pydantic>=2.10.0",
"openai>=1.50.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24.0",
]
[tool.hatch.build.targets.wheel]
packages = ["api", "mcp_server"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"