-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
53 lines (47 loc) · 1.16 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
[project]
name = "litellm-hf-local"
version = "0.1.0"
description = "HuggingFace Local Adapters (V1 & V2) for LiteLLM - Run HuggingFace models locally with advanced features like automatic chat templates, quantization, and streaming"
requires-python = ">=3.12"
dependencies = [
"accelerate>=1.7.0",
"hatchling>=1.27.0",
"litellm[proxy]>=1.72.6",
"torch>=2.7.1",
"transformers>=4.52.4",
]
[project.optional-dependencies]
quantization = [
"bitsandbytes>=0.46.0",
]
tokenizer = [
"protobuf>=6.31.1",
"sentencepiece>=0.2.0",
]
all = [
"bitsandbytes>=0.46.0",
"protobuf>=6.31.1",
"sentencepiece>=0.2.0",
]
lite-proxy = [
"prisma>=0.15.0",
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/arkaprovob/litellm-hf-local"
Documentation = "https://github.com/arkaprovob/litellm-hf-local#readme"
Issues = "https://github.com/arkaprovob/litellm-hf-local/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/hf_local_adapter"]
exclude = [
"tests/",
"docs/",
"*.tmp",
".git/",
".idea",
]