-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.02 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (38 loc) · 1.02 KB
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
[project]
name = "benchflow"
version = "0.1.13"
description = "A tool for easy benchmarking."
readme = "README.md"
requires-python = ">=3.8,<=3.11"
dependencies = [
"datasets>=2.0.0",
"docker>=6.0.0",
"fastapi>=0.100.0",
"jinja2>=3.1.6",
"json5>=0.9.15",
"openai>=1.0.0",
"pytest>=8.3.5",
"requests>=2.30.0",
"ruff>=0.7.0",
"uvicorn>=0.24.0",
]
authors = [
{ name = "Hongji Xu", email = "kirk@benchflow.ai" },
{ name = "Xiangyi Li", email = "xiangyi@benchflow.ai" },
]
maintainers = [
{ name = "Hongji Xu", email = "kirk@benchflow.ai" },
{ name = "Xiangyi Li", email = "xiangyi@benchflow.ai" },
]
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/benchflow-ai/benchflow"
"Bug Tracker" = "https://github.com/benchflow-ai/benchflow/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"