forked from minitorch/minitorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
61 lines (54 loc) · 1.04 KB
/
setup.cfg
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
[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 =
task0_0
task0_1
task0_2
task0_3
task0_4
task1_0
task1_1
task1_2
task1_3
task1_4
task2_0
task2_1
task2_2
task2_3
task2_4
task3_0
task3_1
task3_2
task3_3
task3_4
task4_0
task4_1
task4_2
task4_3
task4_4