-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
76 lines (65 loc) · 1.28 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
[metadata]
name = ethereum-rlp
description = Recursive-length prefix (RLP) serialization as used by the Ethereum Specification.
long_description = file: README.md
long_description_content_type = text/markdown
version = attr: ethereum_rlp.__version__
url = https://github.com/ethereum/ethereum-rlp
license_files =
LICENSE.md
classifiers =
License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
[options]
package_dir=
=src
packages=find:
python_requires = >=3.10
install_requires =
ethereum-types>=0.2.1,<0.3
typing-extensions>=4.12.2
[options.packages.find]
where=src
[options.package_data]
ethereum_rlp =
py.typed
[options.extras_require]
test =
pytest>=8.2.2,<9
pytest-cov>=5,<6
pytest-xdist>=3.6.1,<4
lint =
types-setuptools>=70.3.0.1,<71
isort==5.13.2
mypy==1.10.1
black==24.4.2
flake8==7.1.0
flake8-bugbear==24.4.26
flake8-docstrings==1.7.0
doc =
docc>=0.2.0,<0.3.0
[flake8]
dictionaries=en_US,python,technical
docstring-convention = all
extend-ignore =
E203
D105
D107
D200
D203
D205
D212
D400
D401
D410
D411
D412
D413
D414
D415
D416
extend-exclude =
setup.py
doc/
per-file-ignores =
tests/*:D100,D101,D103,D104,E501
# vim: set ft=dosini: