-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (44 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
52 lines (44 loc) · 1.1 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
44
45
46
47
48
49
50
51
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "benchtools"
version = "0.3.0"
dependencies = [
"CLick",
"pyyaml",
"pandas",
"datasets",
"tabulate",
"openai",
"ollama",
"boto3",
"pydantic"
]
requires-python = ">=3.10"
authors = [
{name = "Ayman Sandouk", email = "ayman_sandouk@uri.edu"},
{name = "Sarah M Brown", email = "brownsarahm@uri.edu"},
]
maintainers = [
{name = "Ayman Sandouk", email = "ayman_sandouk@uri.edu"},
{name = "Sarah M Brown", email = "brownsarahm@uri.edu"}
]
description = ""
readme = "README.md"
license = "MIT" # or license = {file = "LICENSE.txt"} for legacy declaration
keywords = ["benchmark", "machine-learning", "ai", "llm"]
[project.optional-dependencies]
cli = [
"click",
"pyyaml",
"pandas",
]
[project.urls]
Homepage = "https://ml4sts.com/benchtools"
Documentation = "https://ml4sts.com/benchtools"
Repository = "https://github.com/ml4sts/benchtools"
"Bug Tracker" = "https://github.com/ml4sts/benchtools/issues"
[project.scripts]
benchtool = "benchtools.cli:benchtool"
betterbench = "benchtools.cli:betterbench"