pyproject.toml 566 B

1234567891011121314151617181920212223242526
  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>=9.0",
  18. "pytest-asyncio>=0.24",
  19. ]
  20. [tool.setuptools.packages.find]
  21. where = ["."]