forked from ethereum/execution-specs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
164 lines (149 loc) · 4.93 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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
[metadata]
name = ethereum
description = Ethereum specification, provided as a Python package for tooling and testing
long_description = file: README.md
long_description_content_type = text/markdown
version = attr: ethereum.__version__
url = https://github.com/ethereum/execution-specs
license_files =
LICENSE.md
classifiers =
License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
[options]
packages =
ethereum_spec_tools
ethereum_spec_tools/lint
ethereum_spec_tools/lint/lints
ethereum
ethereum/frontier
ethereum/frontier/utils
ethereum/frontier/vm
ethereum/frontier/vm/instructions
ethereum/frontier/vm/precompiled_contracts
ethereum/utils
ethereum/crypto
ethereum_optimized/
ethereum_optimized/frontier
ethereum/homestead
ethereum/homestead/utils
ethereum/homestead/vm
ethereum/homestead/vm/instructions
ethereum/homestead/vm/precompiled_contracts
ethereum_optimized/homestead
ethereum/dao_fork
ethereum/dao_fork/utils
ethereum/dao_fork/vm
ethereum/dao_fork/vm/instructions
ethereum/dao_fork/vm/precompiled_contracts
ethereum_optimized/dao_fork
ethereum/tangerine_whistle
ethereum/tangerine_whistle/utils
ethereum/tangerine_whistle/vm
ethereum/tangerine_whistle/vm/instructions
ethereum/tangerine_whistle/vm/precompiled_contracts
ethereum_optimized/tangerine_whistle
ethereum/spurious_dragon
ethereum/spurious_dragon/utils
ethereum/spurious_dragon/vm
ethereum/spurious_dragon/vm/instructions
ethereum/spurious_dragon/vm/precompiled_contracts
ethereum_optimized/spurious_dragon
ethereum/byzantium
ethereum/byzantium/utils
ethereum/byzantium/vm
ethereum/byzantium/vm/instructions
ethereum/byzantium/vm/precompiled_contracts
ethereum_optimized/byzantium
ethereum/constantinople
ethereum/constantinople/utils
ethereum/constantinople/vm
ethereum/constantinople/vm/instructions
ethereum/constantinople/vm/precompiled_contracts
ethereum_optimized/constantinople
ethereum/istanbul
ethereum/istanbul/utils
ethereum/istanbul/vm
ethereum/istanbul/vm/instructions
ethereum/istanbul/vm/precompiled_contracts
ethereum_optimized/istanbul
ethereum/muir_glacier
ethereum/muir_glacier/utils
ethereum/muir_glacier/vm
ethereum/muir_glacier/vm/instructions
ethereum/muir_glacier/vm/precompiled_contracts
ethereum_optimized/muir_glacier
package_dir =
=src
python_requires = >=3.8
install_requires =
pysha3>=1,<2
coincurve>=17,<18
typing_extensions>=4
[options.package_data]
ethereum =
py.typed
assets/mainnet.json
assets/mainnet_genesis_alloc_rlp.hex
assets/cache_sizes_2048_epochs.json
assets/dataset_sizes_2048_epochs.json
assets/blocks/block_1.json
assets/blocks/block_1234567.json
assets/blocks/block_12964999.json
[options.entry_points]
console_scripts =
ethereum-spec-lint = ethereum_spec_tools.lint:main
ethereum-spec-sync = ethereum_spec_tools.sync:main
ethereum-spec-diff = ethereum_spec_tools.diff:main
ethereum-spec-new-fork = ethereum_spec_tools.new_fork:main
[options.extras_require]
test =
pytest>=6.2,<7
pytest-cov>=2.12,<3
pytest-xdist>=2.3.0,<3
requests
lint =
isort>=5.8,<6
mypy==0.812; implementation_name == "cpython"
black>=22.3.0,<23; implementation_name == "cpython"
flake8-spellcheck>=0.24,<0.25
flake8-docstrings>=1.6,<2
flake8-bugbear>=22.3.23,<23.0.0
flake8>=3.9,<4
doc =
sphinx-autoapi>=1.8.1,<2
undocinclude>=0.2.0,<0.3
sphinx==4.0.2
rstdiff>=0.5.1,<0.6
picklebuilder>=0.1.0,<0.2
sphinx-rtd-theme>=1.0.0,<2.0
doc-autobuild =
sphinx-autobuild==2021.3.14
optimized =
rust-pyspec-glue>=0.0.3,<0.1.0
ethash==0.5.1a1
[flake8]
dictionaries=en_US,python,technical
docstring-convention = all
extend-ignore =
E203 # Ignore: Whitespace before ':'
D107 # Ignore: Missing docstring in __init__
D200 # Ignore: One-line docstring should fit on one line with quotes
D203 # Ignore: 1 blank line required before class docstring
D205 # Ignore: blank line required between summary line and description
D212 # Ignore: Multi-line docstring summary should start at the first line
D400 # Ignore: First line should end with a period
D401 # Ignore: First line should be in imperative mood
D410 # Ignore: Missing blank line after section
D411 # Ignore: Missing blank line before section
D412 # Ignore: No blank lines allowed between a section header and its content
D413 # Ignore: Missing blank line after last section
D414 # Ignore: Section has no content
D415 # Ignore: First line should end with a period, question mark, or exclamation point
D416 # Ignore: Section name should end with a colon
extend-exclude =
setup.py
tests/
doc/
per-file-ignores =
src/ethereum/base_types.py:D105,SC100,SC200
# vim: set ft=dosini: