-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
Copy pathpyproject.toml
62 lines (52 loc) · 1.19 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agbench"
dynamic = ["version"]
license = {file = "LICENSE-CODE"}
authors = [
{ name="Adam Fourney", email="[email protected]" },
]
description = "AutoGen 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",
"scipy"
]
[dependency-groups]
dev = [
"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.ruff.lint]
# Allow prints in this package
ignore = ["T20"]
[tool.pyright]
extends = "../../pyproject.toml"
include = ["src"]
[tool.poe]
include = "../../shared_tasks.toml"
[tool.poe.tasks]
mypy = "mypy --config-file ../../pyproject.toml src"