forked from baking-bad/etherlink-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (48 loc) · 1.62 KB
/
pyproject.toml
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
[tool.poetry]
name = "etherlink-bridge"
version = "0.4.0"
description = "This repository presents an implementation of a bridge between Tezos and Etherlink which implements TZIP-029."
authors = ["Stepan Naumov <[email protected]>"]
packages = [
{ include = "tezos/tests" },
{ include = "scripts" },
]
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
pytezos = "^3.11.2"
python-dotenv = "^1.0.0"
click = "^8.1.7"
[tool.poetry.group.dev.dependencies]
ipython = "^8.21.0"
mypy = "^1.8.0"
pytest = "^8.0.0"
black = "^24.2.0"
types-requests = "^2.31.0.20240125"
ruff = "^0.2.1"
gql = "^3.5.0"
pydantic = "^2.6.1"
requests-toolbelt = "^1.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
strict = true
disallow_any_generics = false
[tool.black]
skip-string-normalization = true
[tool.poetry.scripts]
init_wallets = "scripts.environment:init_wallets"
deploy_token = "scripts.tezos:deploy_token"
deploy_ticketer = "scripts.tezos:deploy_ticketer"
deploy_ticket_helper = "scripts.tezos:deploy_ticket_helper"
get_ticketer_params = "scripts.tezos:get_ticketer_params"
deploy_erc20 = "scripts.etherlink:deploy_erc20"
fund_etherlink_account = "scripts.etherlink:fund_account"
deposit = "scripts.tezos:deposit"
withdraw = "scripts.etherlink:withdraw"
get_proof = "scripts.tezos:get_proof"
execute_outbox_message = "scripts.tezos:execute_outbox_message"
parse_withdrawal_event = "scripts.etherlink:parse_withdrawal_event"
build_tezos_contracts = "scripts.tezos:build_contracts"
build_etherlink_contracts = "scripts.etherlink:build_contracts"
etherlink_tests = "scripts.etherlink:test_contracts"