-
Notifications
You must be signed in to change notification settings - Fork 240
/
pyproject.toml
83 lines (70 loc) · 1.7 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
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 79
[tool.black]
line-length = 79
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"bigmem: marks tests as big memory (deselect with '-m \"not bigmem\"')",
"evm_tools: marks tests as evm_tools (deselect with '-m \"not evm_tools\"')",
]
[tool.docc]
context = [
"docc.references.context",
"docc.search.context",
"docc.html.context",
]
discovery = [
"docc.search.discover",
"docc.html.discover",
"docc.python.discover",
"ethereum_spec_tools.docc.discover",
"docc.listing.discover",
"docc.files.discover",
]
build = [
"docc.search.build",
"ethereum_spec_tools.docc.build",
"docc.files.build",
"docc.listing.build",
"docc.resources.build",
]
transform = [
"docc.python.transform",
"docc.verbatim.transform",
"docc.mistletoe.transform",
"docc.mistletoe.reference",
"ethereum_spec_tools.docc.fix-indexes",
"ethereum_spec_tools.docc.minimize-diffs",
"docc.references.index",
"docc.search.transform",
"docc.html.transform",
]
[tool.docc.plugins."docc.python.transform"]
excluded_references = [
"ethereum_spec_tools.lint.lints", # This is a namespace package.
]
[tool.docc.plugins."docc.python.discover"]
paths = [
"src",
]
excluded_paths = [
"src/ethereum_optimized",
"src/ethereum_spec_tools",
]
[tool.docc.plugins."docc.html.context"]
extra_css = [
"static/custom.css",
]
[tool.docc.plugins."docc.files.discover"]
files = [
"static/custom.css",
]
[tool.docc.output]
path = "docs"
extension = ".html"