-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 985 Bytes
/
pyproject.toml
File metadata and controls
54 lines (46 loc) · 985 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
48
49
50
51
52
53
54
[project]
name = "test2text"
version = "0.1.0"
description = ""
authors = [
{name = "Nikolai Dorofeev - d0rich",email = "dorich2000@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"matplotlib>=3.9.4",
"sqlite-vec>=0.1.6",
"tabbyset>=1.0.0"
]
[dependency-groups]
dev = [
"coverage>=7.9.2",
"ruff>=0.12.3",
]
production = [
"einops>=0.8.1",
"sentence-transformers>=4.0.1",
"torch"
]
[tool.uv]
default-groups = "all"
[tool.ruff.lint]
ignore = ["E402"]
[tool.uv.sources]
torch = {index = "pytorch-cpu"}
[[tool.uv.index]]
name = "pytorch-cu118"
url = "https://download.pytorch.org/whl/cu118"
explicit = true
[[tool.uv.index]]
name = "pytorch-cu124"
url = "https://download.pytorch.org/whl/cu124"
explicit = true
[[tool.uv.index]]
name = "pytorch-cu126"
url = "https://download.pytorch.org/whl/cu126"
explicit = true
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true