forked from llmsystem/llmsys_s25_hw1
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathsetup.cfg
More file actions
40 lines (33 loc) · 730 Bytes
/
setup.cfg
File metadata and controls
40 lines (33 loc) · 730 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
[metadata]
name=minitorch
version=0.4
[files]
packages =
minitorch
mt_diagrams
[darglint]
ignore_regex=((^_(.*))|(.*map)|(.*zip)|(.*reduce)|(test.*)|(tensor_.*))
docstring_style=google
strictness=long
[flake8]
ignore = N801, E203, E266, E501, W503, F812, E741, N803, N802, N806
exclude = .git,__pycache__,docs/slides/*,old,build,dist
[isort]
profile=black
src_paths=minitorch,test
[mypy]
strict = True
ignore_missing_imports = True
exclude=^(docs/)|(project/)|(assignments/)
implicit_reexport = True
[mypy-tests.*]
disallow_untyped_decorators = False
implicit_reexport = True
[black]
exclude=^(docs/)|(project/)|(assignments/)
[tool:pytest]
markers =
task1_1
task1_2
task1_3
task1_4