-
Notifications
You must be signed in to change notification settings - Fork 678
Expand file tree
/
Copy pathpyproject.toml
More file actions
105 lines (100 loc) · 1.56 KB
/
Copy pathpyproject.toml
File metadata and controls
105 lines (100 loc) · 1.56 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[project]
name = "dtu-mlops"
version = "0.1.0"
description = "DTU MLOps course"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"codespell==2.4.1",
"invoke==2.2",
"ipython==9.0.2",
"markdown-exec[ansi]==1.10",
"mkdocs-exclude==1.0.2",
"mkdocs-git-revision-date-localized-plugin==1.4.5",
"mkdocs-glightbox==0.4",
"mkdocs-material==9.6.12",
"mkdocs-material-extensions==1.3.1",
"mkdocs-same-dir==0.1.3",
"pre-commit==4.1",
"pymdown-extensions==10.14.3",
"ruff==0.12.7",
]
[tool.ruff]
target-version = "py311"
line-length = 120
lint.select = [
"A",
"ASYNC",
"B",
"BLE",
"C4",
"C90",
"COM",
"D",
"DJ",
"DTZ",
"E",
"EM",
"ERA",
"EXE",
"F",
"FA",
"I",
"ICN",
"INT",
"ISC",
"LOG",
"N",
"PGH",
"PIE",
"PT",
"PYI",
"Q",
"RET",
"RSE",
"S",
"SIM",
"SLF",
"SLOT",
"T10",
"TCH",
"TID",
"UP",
"W",
"YTT",
]
lint.ignore = [
"B008",
"B028",
"B905",
"COM812",
"D100",
"D107",
"D211",
"D212",
"F821",
"F841",
"ISC001",
"S301",
"S311",
"S603",
"S605",
"S607",
"TC003",
]
lint.exclude = [ "student_repos/" ]
lint.pydocstyle.convention = "google"
[tool.codespell]
skip = "*.pdf,*.ipynb,*.drawio,*.json"
ignore-words-list = [ "instanciate" ]
[tool.typos.default.extend-identifiers]
arange = "arange"
[tool.typos.default.extend-words]
Ue = "Ue"
Hashi = "Hashi"