forked from Ankr-network/ankr-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (31 loc) · 853 Bytes
/
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
[tool.poetry]
name = "ankr-sdk"
version = "1.0.2"
description = "Compact Python library for interacting with Ankr's Advanced APIs."
authors = [
"Roman Fasakhov <romanfasakhov@ankr.com>",
"Yurii Momotenko <momotenko.yuriy@gmail.com"
]
license = "MIT License"
homepage = "https://ankr.com/"
repository = "https://github.com/Ankr-network/ankr-python-sdk"
keywords = ["ankr", "sdk", "blockchain", "nft"]
readme = "README.md"
include = ["LICENSE"]
packages = [{ include = "ankr" }]
[tool.poetry.dependencies]
python = "^3.8.1"
web3 = "^6.4.0"
pydantic = "^2.0.8"
pyhumps = "^3.8.0"
typing-extensions = "^4.6.2"
eth-typing = "^4.0.0"
urllib3 = "^2.0.0"
[tool.poetry.dev-dependencies]
pytest = "^7.3.1"
mypy = "^1.3.0"
flake8 = "^6.0.0"
isort = "^5.12.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"