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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. "scipy"
  27. ]
  28. [tool.uv]
  29. dev-dependencies = [
  30. "types-tabulate",
  31. "types-docker"
  32. ]
  33. [tool.hatch.version]
  34. path = "src/agbench/version.py"
  35. [project.scripts]
  36. agbench = "agbench.cli:main"
  37. [tool.ruff]
  38. extend = "../../pyproject.toml"
  39. exclude = ["build", "dist", "page_script.js", "src/agbench/res/Dockerfile", "src/agbench/template/global_init.sh"]
  40. include = [
  41. "src/**"
  42. ]
  43. [tool.ruff.lint]
  44. # Allow prints in this package
  45. ignore = ["T20"]
  46. [tool.pyright]
  47. extends = "../../pyproject.toml"
  48. include = ["src"]
  49. [tool.poe]
  50. include = "../../shared_tasks.toml"
  51. [tool.poe.tasks]
  52. mypy = "mypy --config-file ../../pyproject.toml src"