forked from zksync-sdk/zksync2-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
58 lines (51 loc) · 1.02 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
[metadata]
name = zksync2
description = zkSync2 python client sdk
long_description = file: README.md
author = Danijel Radakovic
url = https://zksync.io
license = MIT
[options]
packages = find:
install_requires =
web3>=6.10.0
python_requires = >=3.8
setup_requires =
setuptools_scm >= v7.0.5
[options.extras_require]
test =
mypy >= 0.8
[options.packages.find]
include =
zksync2
zksync2.*
[options.package_data]
zksync2.manage_contracts.contract_abi =
ContractDeployer.json
IERC20.json
IEthToken.json
IL1Bridge.json
IL2Bridge.json
INonceHolder.json
IPaymasterFlow.json
IZkSync.json
# [tox:tox]
# envlist = py{38,39},mypy
# [testenv:py{38,39}]
# deps = coverage
# setenv = ZK_SYNC_LIBRARY_PATH=/lib/zks-crypto-linux-x64.so
# 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