forked from ethereum/execution-specs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
106 lines (93 loc) · 2.92 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
[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 = 0.1.0
url = https://github.com/ethereum/eth1.0-specs
license_files =
LICENSE.md
classifiers =
License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
[options]
packages =
ethereum_spec_tools
ethereum
ethereum/frontier
ethereum/frontier/utils
ethereum/frontier/vm
ethereum/frontier/vm/instructions
ethereum/frontier/vm/precompiled_contracts
ethereum/utils
ethereum_optimized/
ethereum_optimized/frontier
package_dir =
=src
python_requires = >=3.7
install_requires =
pysha3>=1,<2
coincurve>=15,<16
[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
[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==21.5b2; implementation_name == "cpython"
flake8-spellcheck>=0.24,<0.25
flake8-docstrings>=1.6,<2
flake8>=3.9,<4
doc =
sphinx-autoapi>=1.8.1,<2
undocinclude>=0.2.0,<0.3
sphinx==4.0.2
rstdiff>=0.5.0,<0.6
picklebuilder>=0.1.0,<0.2
doc-autobuild =
sphinx-autobuild==2021.3.14
optimized =
lmdb>=1
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/
# vim: set ft=dosini: