-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
63 lines (56 loc) · 1.44 KB
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
60
61
62
63
[tool.poetry]
name = "aptos-sdk"
version = "0.11.0"
description = "Aptos SDK"
authors = ["Aptos Labs <opensource@aptoslabs.com>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/aptos-labs/aptos-python-sdk"
homepage = "https://aptos.dev/en/build/sdks/python-sdk"
keywords = ["web3", "sdk", "aptos", "blockchain"]
[tool.setuptools.package-data]
"aptos-sdk" = ["py.typed"]
[tool.poetry.dependencies]
cryptography = "^46.0.5"
python-graphql-client = "^0.4.3"
httpx = {extras = ["http2"], version = "^0.28.0"}
PyNaCl = "^1.6.2"
python = ">=3.10.0"
tomli = "^2.4.0"
typing-extensions = "^4.15.0"
# Security overrides for transitive dependencies
h11 = "^0.16.0" # via httpx -> httpcore
h2 = "^4.3.0" # via httpx[http2]
urllib3 = "^2.6.3"
requests = "^2.32.5"
aiohttp = "^3.13.3"
[tool.poetry.group.dev.dependencies]
autoflake = "^2.3.1"
behave = "^1.2.6"
black = "^26.3.1"
coverage = "^7.6.12"
flake8 = "^7.2.0"
isort = "^5.13.2"
mypy = "^1.16.0"
mypy-extensions = "^1.1.0"
types-six = "^1.17.0.20250515"
[tool.coverage.run]
source = ["aptos_sdk"]
omit = [
"aptos_sdk/**/test_*.py",
"aptos_sdk/**/*_test.py",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.",
"class Test\\(",
"def test_",
"raise NotImplementedError",
]
show_missing = true
[tool.coverage.html]
directory = "htmlcov"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"