-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 954 Bytes
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 954 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
[project]
name = "interact_llm"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "MinaAlmasi" }
]
requires-python = ">=3.12.3"
dependencies = [
"accelerate>=1.3.0",
"huggingface-hub>=0.28.1",
"lingua-language-detector>=2.0.2",
"mlx-lm>=0.21.4",
"mlx==0.23.1",
"protobuf>=5.29.3",
"pydantic>=2.10.6",
"sentencepiece>=0.2.0",
"textual>=1.0.0",
"toml>=0.10.2",
"torch>=2.6.0",
"tqdm>=4.67.1",
"transformers>=4.48.2",
"pillow>=11.1.0",
"torchvision>=0.21.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ruff>=0.9.7",
]
[tool.ruff]
src = ["src"]
lint.select = ["F", "E", "W", "I001"] # F for pyflakes, E + W for pycodestyle errors + warnings, #I001 for isort
[tool.uv.sources]
transformers = { git = "https://github.com/huggingface/transformers", rev = "v4.49.0-Gemma-3" }