File tree 3 files changed +5
-1
lines changed
3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 18
18
install_requires = [
19
19
"eth-hash>=0.1.0,<1.0.0" ,
20
20
"eth-utils>=1.3.0,<2.0.0" ,
21
+ "eth-typing>=2.0.0,<3" ,
21
22
"rlp>=0.4.7,<2.0.0" ,
22
23
],
23
24
license = "MIT" ,
24
25
zip_safe = False ,
25
26
keywords = 'ethereum blockchain evm trie merkle' ,
26
27
packages = find_packages (exclude = ["tests" , "tests.*" ]),
28
+ package_data = {'trie' : ['py.typed' ]},
27
29
classifiers = [
28
30
'Development Status :: 2 - Pre-Alpha' ,
29
31
'Intended Audience :: Developers' ,
Original file line number Diff line number Diff line change @@ -23,4 +23,6 @@ basepython =
23
23
[testenv:lint]
24
24
basepython =python
25
25
deps =flake8
26
- commands =flake8 {toxinidir}/trie {toxinidir}/tests
26
+ commands =
27
+ flake8 {toxinidir}/trie {toxinidir}/tests
28
+ mypy --follow-imports =silent --warn-unused-ignores --ignore-missing-imports --no-strict-optional --check-untyped-defs --disallow-incomplete-defs --disallow-untyped-defs --disallow-any-generics -p py-trie
You can’t perform that action at this time.
0 commit comments