-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 836 Bytes
/
Copy pathpyproject.toml
File metadata and controls
46 lines (40 loc) · 836 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
[project]
name = "llm-from-zero-to-one"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"datasets>=4.6.1",
"jaxtyping>=0.3.7",
"modelscope[full]>=1.35.0",
"numpy>=2.2.6",
"oss2>=2.19.1",
"torch>=2.10.0",
"tqdm>=4.67.3",
"transformers>=5.4.0",
]
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = [
"checkpoint_manager*",
"dataset*",
"evaluator*",
"logger*",
"models*",
"trainer*",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
# 忽略 jaxtyping 语法导致的 F722 错误
ignore = ["F722"]
[dependency-groups]
dev = [
"ruff>=0.15.9",
]