forked from bnb-chain/greenfield-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (54 loc) · 1.22 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
55
56
57
58
59
[tool.poetry]
name = "greenfield-python-sdk"
version = "0.3.0"
description = "A Greenfield python SDK"
authors = ["BNB Chain"]
readme = "README.md"
packages = [{include = "greenfield_python_sdk"}]
[tool.poetry.dependencies]
python = "^3.9"
betterproto = {git = "https://github.com/danielgtaylor/python-betterproto", rev = "e7f07fa2a113bcaef42571b4a67b3ddfbe0ab935"}
grpcio-tools = "1.57.0"
httpx = "0.24.1"
jinja2 = "3.1.2"
pydantic = "2.3.0"
grpclib = "0.4.5"
ecdsa = "0.18.0"
bech32 = "1.2.0"
mnemonic = "0.20"
hdwallets = "0.1.2"
aiohttp = "3.8.5"
safe-pysha3 = "1.0.4"
pycryptodome = "3.18"
coincurve = "18.0.0"
alt-betterproto = "2.0.1"
eth-keys = "0.4.0"
web3 = "6.9.0"
xmltodict = "0.13.0"
reedsolo = "1.7.0"
python-dotenv = "1.0.0"
pytest-timeout = "2.1.0"
pydantic-settings = "2.0.3"
py-ecc = "^6.0.0"
html-to-json = "^2.0.0"
[tool.poetry.group.dev.dependencies]
mypy = "*"
black = "*"
isort = "*"
flake8 = "*"
pytest = "*"
pytest-cov = "*"
pytest-asyncio = "*"
coverage = "*"
pytest-mock = "3.11.1"
[tool.pytest.ini_options]
markers = [
"unit: marks tests as unitary",
"e2e: marks tests as end to end",
]
[tool.isort]
profile = "black"
line_length = 120
[build-system]
requires = ["poetry"]
build-backend = "poetry.masonry.api"