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.1 kB

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