-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
58 lines (52 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
[project]
name = "whichllm"
version = "0.5.0"
description = "Find the best LLM that runs on your hardware"
authors = [{name = "Andyyyy64"}]
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
homepage = "https://github.com/Andyyyy64/whichllm"
repository = "https://github.com/Andyyyy64/whichllm"
keywords = ["llm", "local-llm", "gpu", "vram", "huggingface", "inference", "hardware", "cli", "recommendation"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: System :: Hardware",
]
dependencies = [
"typer>=0.9",
"rich>=13.0",
"httpx>=0.27",
"psutil>=5.9",
"dbgpu[fuzz]>=1.0",
"nvidia-ml-py>=12.0",
]
[project.urls]
Homepage = "https://github.com/Andyyyy64/whichllm"
Repository = "https://github.com/Andyyyy64/whichllm"
"Bug Tracker" = "https://github.com/Andyyyy64/whichllm/issues"
Changelog = "https://github.com/Andyyyy64/whichllm/blob/main/CHANGELOG.md"
[project.scripts]
whichllm = "whichllm.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/whichllm"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[dependency-groups]
dev = [
"pytest>=8.0",
"pyarrow>=23.0.1",
]