forked from ethereum/execution-specs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
80 lines (69 loc) · 2.23 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
[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/vm
ethereum/frontier/vm/instructions
package_dir =
=src
python_requires = >=3.7
install_requires =
pysha3>=1,<2
coincurve>=15,<16
[options.entry_points]
console_scripts =
ethereum-spec-lint = ethereum_spec_tools.lint:main
[options.extras_require]
test =
pytest>=6.2,<7
pytest-cov>=2.12,<3
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.1.1,<0.2
sphinx==4.0.2
doc-autobuild =
sphinx-autobuild==2021.3.14
[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: