forked from bostxavier/Serial-Speakers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (61 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
69 lines (61 loc) · 1.28 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
65
66
67
68
69
[project]
name = "novelshare"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10,<3.14"
dependencies = [
"transformers>=4.51.3",
"torch>=2.7.0",
"more-itertools>=10.7.0",
"nltk>=3.9.1",
"scrambledtext",
"setuptools>=80.0.1",
"datasets>=4.5.0",
]
[project.optional-dependencies]
cu128 = [
"torch>=2.7.0"
]
rocm63 = [
"torch>=2.7.0",
"pytorch-triton-rocm>=3.1.0",
]
cpu = [
"torch>=2.7.0"
]
[tool.uv]
conflicts = [
[
{ extra = "cu128" },
{ extra = "rocm63" },
{ extra = "cpu" },
],
]
[dependency-groups]
dev = [
"hypothesis>=6.131.16",
"pytest>=8.3.5",
]
[tool.uv.sources]
scrambledtext = { git = "https://github.com/Aethor/scrambledtext" }
torch = [
{ index = "pytorch-cu128", extra = "cu128" },
{ index = "pytorch-rocm63", extra = "rocm63" },
{ index = "pytorch-cpu", extra = "cpu" },
]
pytorch-triton-rocm = [
{ index = "pytorch-rocm63", extra = "rocm63" }
]
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
[[tool.uv.index]]
name = "pytorch-cu128"
url = "https://download.pytorch.org/whl/cu128"
explicit = true
[[tool.uv.index]]
name = "pytorch-rocm63"
url = "https://download.pytorch.org/whl/rocm6.3"
explicit = true