-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 741 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 741 Bytes
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
[tool.poetry]
name = "layer-zero-bridger"
version = "0.1.0"
description = "A tool for automating and managing USDC and USDT transfers across various blockchains."
authors = ["tmlnv <tmlnv@protonmail.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "~3.11"
web3 = "6.0.0"
loguru = ">=0.7.0,<0.8.0"
termcolor = ">=2.3.0,<2.4.0"
python-dotenv = ">=1.0.0,<1.1.0"
prettytable = ">=3.8.0,<3.9.0"
colorama = ">=0.4.6,<0.5.0"
tqdm = ">=4.65.0,<4.67.0"
requests = ">=2.30.0,<2.33.0"
hexbytes = ">=0.3.0,<0.4.0"
aiohttp = ">=3.8.4,<3.11.0"
[tool.poetry.group.dev.dependencies]
neovim = "^0.3.1"
debugpy = "^1.8.1"
isort = "^5.13.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"