-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (55 loc) · 1.63 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (55 loc) · 1.63 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
52
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "splleed"
version = "0.1.0a3"
description = "LLM inference benchmarking harness with pluggable backends"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Bradley Butcher", email = "bradleybutcher@outlook.com" }]
keywords = ["llm", "benchmark", "inference", "vllm", "tgi", "performance", "latency"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"pydantic>=2.0",
"httpx>=0.25",
"rich>=13.0",
"numpy>=1.24,<2.3", # numba (vLLM dep) requires <2.3
"tqdm>=4.0",
]
[project.optional-dependencies]
hf = ["datasets>=2.0"]
[project.urls]
Homepage = "https://github.com/Bradley-Butcher/Splleed"
Repository = "https://github.com/Bradley-Butcher/Splleed"
Issues = "https://github.com/Bradley-Butcher/Splleed/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/splleed"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[dependency-groups]
dev = [
"pre-commit>=4.5.1",
"pyright>=1.1.407",
"pytest>=7.0",
"pytest-asyncio>=0.21",
"pytest-cov>=7.0.0",
"ruff>=0.14.10",
"vulture>=2.14",
]