autogen/python/packages/agbench/pyproject.toml
Jack Gerrits 306541e247 Fixup ruff config and inclusions (#495)
* add tests to ruff for core

* fmt

* lint

* lint fixes

* fixup more dirs

* dont include non python

* lint fixes

* lint fixes

* fix dir name

* dont relative include
2024-09-13 10:41:15 -04:00

57 lines
1.1 KiB
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agbench"
dynamic = ["version"]
authors = [
{ name="Adam Fourney", email="adamfo@microsoft.com" },
]
description = "AGNext Benchmarking Tools"
readme = "README.md"
requires-python = ">=3.8, <3.13"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"openai",
"docker",
"huggingface_hub",
"tabulate",
"azure-identity",
"pandas"
]
[tool.uv]
dev-dependencies = [
"types-tabulate",
"types-docker"
]
[tool.hatch.version]
path = "src/agbench/version.py"
[project.scripts]
agbench = "agbench.cli:main"
[tool.ruff]
extend = "../../pyproject.toml"
exclude = ["build", "dist", "page_script.js", "src/agbench/res/Dockerfile", "src/agbench/template/global_init.sh"]
include = [
"src/**"
]
[tool.pyright]
extend = "../../pyproject.toml"
include = ["src"]
[tool.poe]
include = "../../shared_tasks.toml"
[tool.poe.tasks]
mypy = "mypy --config-file ../../pyproject.toml src"