-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 759 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (35 loc) · 759 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "language-modelling"
version = "0.1.0"
description = "Language modelling experiments with transformer models and custom tokenizers"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy",
"torch>=2.0.0",
"tqdm",
"regex",
"pyyaml",
"wandb",
"datasets",
"hf_transfer",
"sortedcontainers"
]
[project.optional-dependencies]
dev = [
"pytest>=6.0.0",
"pytest-cov>=4.0.0",
"matplotlib",
]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
addopts = ["--cov=src", "--cov-report=xml"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"^\\s*\\.\\.\\.\\s*$"
]