-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (48 loc) · 1.11 KB
/
pyproject.toml
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
[project]
name = "sample-efficiency-evaluation"
description = ""
authors = [
{ name="Daniel Christoph", email="[email protected]" },
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"torch",
"setuptools",
"wheel",
"datasets",
"transformers>=4.45",
"tqdm",
"spacy[cuda12x]",
"numpy",
"more-itertools",
"matplotlib",
"tensorboard>=2.18.0",
"lm-pub-quiz"
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pylint",
"black"
]
[tool.pylint]
disable = [
"C0103", # Disable snake_case naming convention check
"C0114", # Missing module docstring
"R0903", # Too few public methods
"C0115", # Missing class docstring
"C0116", # Missing function docstring
"C0301", # Line too long
"E0401", # Unable to import
"R0913", # Too many arguments
"R0917", # Too many positional arguments
"R0902", # Too many instance attributes
"R0914", # Too many local variables
"R0801", # Similar lines in 2 files
"C0209", # consider-using-f-string
]
[tool.black]
line-length = 120