pyproject.toml 646 B

123456789101112131415161718192021222324252627282930
  1. [build-system]
  2. requires = ["setuptools>=68.0"]
  3. build-backend = "setuptools.build_meta"
  4. [project]
  5. name = "hermes-chatto-plugin"
  6. version = "1.0.0"
  7. description = "Chatto platform adapter for Hermes Agent (includes vendored chattolib)"
  8. requires-python = ">=3.11"
  9. license = {text = "MIT"}
  10. authors = [
  11. {name = "liv", email = "paul@klumpp.de"},
  12. ]
  13. dependencies = [
  14. ]
  15. #[project.entry-points."hermes_agent.plugins"]
  16. #hermes-chatto-plugin = "hermes-chatto-plugin"
  17. [dependency-groups]
  18. dev = [
  19. "pytest>=9.0",
  20. "pytest-asyncio>=0.24",
  21. "chattolib[realtime]>=0.4.19",
  22. "connectrpc>=0.11.1",
  23. ]
  24. [tool.setuptools.packages.find]
  25. where = ["."]