-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (34 loc) · 829 Bytes
/
pyproject.toml
File metadata and controls
47 lines (34 loc) · 829 Bytes
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
[project]
name = "flexbench-cli"
version = "0.2.0"
description = "FlexBench CLI - Docker orchestration for FlexAI Universal Benchmarking"
readme = "README.md"
requires-python = ">=3.12"
authors = [
{name = "Daniel Altunay"},
{name = "Grigori Fursin"},
]
dependencies = [
"aiohttp>=3.12.13",
"pyyaml>=6.0.2",
"typer>=0.16.0",
]
license = {text = "Apache-2.0"}
classifiers = [
"Programming Language :: Python :: 3.12",
]
[project.scripts]
flexbench = "cli.main:main"
[project.optional-dependencies]
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"pre-commit>=4.2.0",
"pytest>=8.3.5",
]
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
include = ["cli*", "flexbench*", "flexboard*"]