pyproject.toml 598 B

123456789101112131415161718192021222324252627
  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. [project.entry-points."hermes_agent.plugins"]
  14. hermes-chatto-plugin = "hermes-chatto-plugin"
  15. [dependency-groups]
  16. dev = [
  17. "pytest>=8.0",
  18. "pytest-asyncio>=0.24",
  19. "chattolib[realtime]>=0.4.19"
  20. ]
  21. [tool.setuptools.packages.find]
  22. where = ["."]