pyproject.toml 725 B

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