forked from aptos-labs/aptos-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (33 loc) · 912 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 = "aptos-sdk"
version = "0.9.1"
description = "Aptos SDK"
authors = ["Aptos Labs <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/aptos-labs/aptos-core"
homepage = "https://github.com/aptos-labs/aptos-core/tree/main/ecosystem/python/sdk"
keywords = ["web3", "sdk", "aptos", "blockchain"]
[tool.setuptools.package-data]
"aptos-sdk" = ["py.typed"]
[tool.poetry.dependencies]
ecdsa = "0.18.0"
python-graphql-client = "^0.4.3"
httpx = "^0.27.0"
PyNaCl = "^1.5.0"
python = ">=3.8.1"
tomli = "^2.0.1"
typing-extensions = "^4.4.0"
behave = "^1.2.6"
types-six = "^1.16.21.20240513"
[tool.poetry.dev-dependencies]
autoflake = "2.2.0"
black = "^24.3.0"
coverage = "^7.2.4"
flake8 = "7.0.0"
isort = "^5.10.1"
mypy = "^1.0.0"
mypy-extensions = "^1.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"