pyproject.toml 644 B

1234567891011121314151617181920212223
  1. [project]
  2. name = "rhododendron"
  3. version = "2026.4.19"
  4. authors = [
  5. { name = "Visuddhinanda", email = "visuddhinanda@gmail.com" },
  6. { name = "Kassapa", email = "ven.kassapa@qq.com" },
  7. ]
  8. description = "A LLM service"
  9. readme = "README.md"
  10. requires-python = ">=3.12"
  11. classifiers = [
  12. "Programming Language :: Python :: 3",
  13. "Operating System :: OS Independent",
  14. ]
  15. license = "MIT"
  16. dependencies = ["bottle>=0.13", "langchain>=1.2"]
  17. [project.urls]
  18. Homepage = "https://github.com/iapt-platform/mint/tree/master/rhododendron"
  19. Issues = "https://github.com/iapt-platform/mint/issues"
  20. [project.scripts]
  21. rhododendron = "rhododendron:main_cli"