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 1.2 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. [build-system]
  2. requires = ["hatchling"]
  3. build-backend = "hatchling.build"
  4. [project]
  5. name = "agbench"
  6. dynamic = ["version"]
  7. license = {file = "LICENSE-CODE"}
  8. authors = [
  9. { name="Adam Fourney", email="adamfo@microsoft.com" },
  10. ]
  11. description = "AutoGen Benchmarking Tools"
  12. readme = "README.md"
  13. requires-python = ">=3.8, <3.13"
  14. classifiers = [
  15. "Programming Language :: Python :: 3",
  16. "License :: OSI Approved :: MIT License",
  17. "Operating System :: OS Independent",
  18. ]
  19. dependencies = [
  20. "openai",
  21. "docker",
  22. "huggingface_hub",
  23. "tabulate",
  24. "azure-identity",
  25. "pandas"
  26. ]
  27. [tool.uv]
  28. dev-dependencies = [
  29. "types-tabulate",
  30. "types-docker"
  31. ]
  32. [tool.hatch.version]
  33. path = "src/agbench/version.py"
  34. [project.scripts]
  35. agbench = "agbench.cli:main"
  36. [tool.ruff]
  37. extend = "../../pyproject.toml"
  38. exclude = ["build", "dist", "page_script.js", "src/agbench/res/Dockerfile", "src/agbench/template/global_init.sh"]
  39. include = [
  40. "src/**"
  41. ]
  42. [tool.ruff.lint]
  43. # Allow prints in this package
  44. ignore = ["T20"]
  45. [tool.pyright]
  46. extends = "../../pyproject.toml"
  47. include = ["src"]
  48. [tool.poe]
  49. include = "../../shared_tasks.toml"
  50. [tool.poe.tasks]
  51. mypy = "mypy --config-file ../../pyproject.toml src"