forked from zksync-sdk/zksync-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
55 lines (45 loc) · 870 Bytes
/
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
[metadata]
name = zklink_sdk
description = SDK for using zklink
long_description = file: README.rst
author = MatterLabs
url = https://zk.link
license = MIT
[options]
packages = find:
install_requires =
idna >= 2.8
web3 >= 5.16
httpx >= 0.16
pydantic >= 1.7
python_requires = >=3.8
setup_requires =
setuptools_scm>=3.5.0
[options.extras_require]
test =
mypy >= 0.8
[options.packages.find]
include =
zklink_sdk
zklink_sdk.*
[options.package_data]
zklink_sdk =
py.typed
zklink_sdk.contract_abi =
IERC20.json
ZkLink.json
[tox:tox]
envlist = py{38,39},mypy
[testenv:py{38,39}]
deps = coverage
commands = coverage run -m unittest
[testenv:mypy]
extras = test
commands = mypy .
[mypy]
show_error_codes = True
no_implicit_optional = True
[mypy-setuptools.*]
ignore_missing_imports = True
[mypy-eth_account.*]
ignore_missing_imports = True