pyproject.toml 806 B

12345678910111213141516171819202122232425262728293031323334
  1. [build-system]
  2. requires = ["hatchling >= 1.26"]
  3. build-backend = "hatchling.build"
  4. [project]
  5. name = "dahlia"
  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 rbac 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 = [
  20. "SQLAlchemy",
  21. "psycopg[c,pool]",
  22. "mysql-connector-python",
  23. "langchain",
  24. "minio",
  25. "pika",
  26. ]
  27. [project.urls]
  28. Homepage = "https://github.com/iapt-platform/mint/tree/master/sutta-pitaka-importer"
  29. Issues = "https://github.com/iapt-platform/mint/issues"
  30. [project.scripts]
  31. dahlia = "dahlia.__main__:main"