You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

pyproject.toml 883 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. [project]
  2. name = "dora-openai-server"
  3. version = "0.3.11"
  4. authors = [
  5. { name = "Haixuan Xavier Tao", email = "tao.xavier@outlook.com" },
  6. { name = "Enzo Le Van", email = "dev@enzo-le-van.fr" },
  7. ]
  8. description = "Dora OpenAI API Server"
  9. license = { text = "MIT" }
  10. readme = "README.md"
  11. requires-python = ">=3.8"
  12. dependencies = [
  13. "dora-rs >= 0.3.9",
  14. "numpy < 2.0.0",
  15. "pyarrow >= 5.0.0",
  16. "fastapi >= 0.115",
  17. "asyncio >= 3.4",
  18. "uvicorn >= 0.31",
  19. "pydantic >= 2.9",
  20. ]
  21. [dependency-groups]
  22. dev = ["pytest >=8.1.1", "ruff >=0.9.1"]
  23. [project.scripts]
  24. dora-openai-server = "dora_openai_server.main:main"
  25. [tool.ruff.lint]
  26. extend-select = [
  27. "D", # pydocstyle
  28. "UP", # Ruff's UP rule
  29. "PERF", # Ruff's PERF rule
  30. "RET", # Ruff's RET rule
  31. "RSE", # Ruff's RSE rule
  32. "NPY", # Ruff's NPY rule
  33. "N", # Ruff's N rule
  34. "I", # Ruff's I rule
  35. ]