-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
59 lines (54 loc) · 1.23 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.6.1"
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.63.0"
httpx = "0.27.0"
jinja2 = "3.1.4"
pydantic = "2.5.2"
grpclib = "0.4.6"
bech32 = "1.2.0"
mnemonic = "0.20"
hdwallets = "0.1.2"
aiohttp = "3.9.4"
safe-pysha3 = "1.0.4"
pycryptodome = "3.19.1"
coincurve = "18.0.0"
alt-betterproto = "2.0.1"
eth-keys = "0.5.1"
web3 = "6.14.0"
xmltodict = "0.13.0"
reedsolo = "1.7.0"
python-dotenv = "1.0.1"
pytest-timeout = "2.3.1"
pydantic-settings = "2.1.0"
py-ecc = "^7.0.0"
html-to-json = "^2.0.0"
secp256k1 = "^0.14.0"
[tool.poetry.group.dev.dependencies]
mypy = "*"
black = "*"
isort = "*"
flake8 = "*"
pytest = "*"
pytest-cov = "*"
pytest-asyncio = "*"
coverage = "*"
pytest-mock = "3.12.0"
[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"