forked from ethereum/execution-spec-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
138 lines (126 loc) · 4.09 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
[metadata]
name = test-filler
description = Ethereum execution client test authoring framework
long_description = file: README.md
long_description_content_type = text/markdown
version = 1.0.0
url = https://github.com/ethereum/execution-spec-tests
license_files =
LICENSE
classifiers =
License :: OSI Approved :: MIT License
[options]
packages =
evm_transition_tool
ethereum_test_forks
ethereum_test_tools
pytest_plugins
package_dir =
=src
python_requires = >=3.10
install_requires =
click>=8.1.0,<9
ethereum@git+https://github.com/ethereum/execution-specs
hive.py@git+https://github.com/danceratopz/hive.py@chore/setup.cfg/move-mypy-deps-to-lint-extras
setuptools
types-setuptools
gitpython>=3.1.31,<4
PyJWT>=2.3.0,<3
tenacity>8.2.0,<9
bidict>=0.23,<1
requests>=2.31.0,<3
colorlog>=6.7.0,<7
pytest>7.3.2,<8
pytest-html>=4.1.0,<5
pytest-metadata>=3,<4
pytest-xdist>=3.3.1,<4
coincurve>=20.0.0,<21
trie>=2.0.2,<3
semver>=3.0.1,<4
click>=8.0.0,<9
pydantic>=2.6.3,<3
rich>=13.7.0,<14
solc-select>=1.0.4
[options.package_data]
ethereum_test_tools =
py.typed
ethereum_test_forks =
py.typed
forks/*.bin
evm_transition_tool =
py.typed
pytest_plugins =
py.typed
[options.entry_points]
console_scripts =
fill = cli.pytest_commands:fill
tf = cli.pytest_commands:tf
checkfixtures = cli.check_fixtures:check_fixtures
consume = cli.pytest_commands:consume
genindex = cli.gen_index:generate_fixtures_index_cli
gentest = cli.gentest:make_test
pyspelling_soft_fail = cli.tox_helpers:pyspelling
markdownlintcli2_soft_fail = cli.tox_helpers:markdownlint
order_fixtures = cli.order_fixtures:order_fixtures
evm_bytes_to_python = cli.evm_bytes_to_python:main
hasher = cli.hasher:main
[options.extras_require]
test =
# pytest already in 'install_requires'
pytest-cov>=4.1.0,<5
lint =
isort>=5.8,<6
mypy==0.991; implementation_name == "cpython"
types-requests
black==22.3.0; implementation_name == "cpython"
flake8-spellcheck>=0.24,<0.25
flake8-docstrings>=1.6,<2
flake8>=6.1.0,<7
pep8-naming==0.13.3
fname8>=0.0.3
docs =
cairosvg>=2.7.0,<3 # required for social plugin (material)
mike>=1.1.2,<2
mkdocs>=1.4.3,<2
mkdocs-gen-files>=0.5.0,<1
mkdocs-git-authors-plugin>=0.7.1,<1
mkdocs-glightbox>=0.3.4,<1
mkdocs-literate-nav>=0.6.0,<1
mkdocs-material>=9.1.14,<10
mkdocs-material-extensions>=1.1.1,<2
mkdocstrings>=0.21.2,<1
mkdocstrings-python>=1.0.0,<2
pillow>=10.0.1,<11 # required for social plugin (material)
pyspelling>=2.8.2,<3
[flake8]
dictionaries=en_US,python,technical
docstring-convention = google
extend-ignore = E203, D107, D200, D203, D205,
D212, E231, D400, D401, D410, D411, D412,
D413, D414, D415, D416, N806
# Ignore E203: Whitespace before ':'
# Ignore D107: Missing docstring in __init__
# Ignore D200: One-line docstring should fit on one line with quotes
# Ignore D203: 1 blank line required before class docstring
# Ignore D205: blank line required between summary line and description
# Ignore D212: Multi-line docstring summary should start at the first line
# Ignore E231: Missing whitespace after ':'
# Ignore D400: First line should end with a period
# Ignore D401: First line should be in imperative mood
# Ignore D410: Missing blank line after section
# Ignore D411: Missing blank line before section
# Ignore D412: No blank lines allowed between a section header and its content
# Ignore D413: Missing blank line after last section
# Ignore D414: Section has no content
# Ignore D415: First line should end with a period, question mark, or exclamation point
# Ignore D416: Section name should end with a colon
# Ignore N806: Variable names with all caps (ALL_CAPS)
max-line-length = 99
per-file-ignore =
tests/evm_transition_tool/test_evaluate.py:E501
extend-exclude =
setup.py
src/evm_transition_tool/tests/
src/ethereum_test_tools/tests/
src/ethereum_test_forks/tests/
# vim: set ft=dosini: