-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (64 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
71 lines (64 loc) · 1.66 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
64
65
66
67
68
69
70
71
[project]
name = "pangea-sdk"
version = "6.13.0"
description = "Pangea API SDK"
authors = [
{name = "Glenn Gallien", email = "glenn.gallien@pangea.cloud"}
]
license = "MIT"
readme = "README.md"
keywords = ["Pangea", "SDK", "Audit"]
classifiers = [
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.9.2,<4.0.0"
dependencies = [
"aiohttp (>=3.13.2,<4.0.0)",
"cryptography (>=46.0.3,<47.0.0)",
"deprecated (>=1.3.1,<2.0.0)",
"google-crc32c (>=1.7.1,<2.0.0)",
"pydantic (>=2.12.5,<3.0.0)",
"python-dateutil (>=2.9.0.post0,<3.0.0)",
"requests (>=2.32.5,<3.0.0)",
"requests-toolbelt (>=1.0.0,<2.0.0)",
"typing-extensions (>=4.15.0,<5.0.0)",
"yarl (>=1.22.0,<2.0.0)"
]
[project.urls]
repository = "https://github.com/pangeacyber/pangea-python"
[dependency-groups]
dev = [
"docstring-parser ==0.17.0",
"pytest-asyncio ==1.3.0",
"pytest_httpserver ==1.1.3",
"types-Deprecated ==1.3.1.20251101",
"types-python-dateutil ==2.9.0.20251115",
"types-requests ==2.32.4.20250913",
]
[build-system]
requires = ["uv_build==0.9.17"]
build-backend = "uv_build"
[tool.mypy]
python_version = "3.9"
color_output = true
error_summary = true
implicit_reexport = false
pretty = true
show_column_numbers = true
warn_unused_ignores = true
plugins = ['pydantic.mypy']
[tool.pydantic-mypy]
init_forbid_extra = false
init_typed = true
warn_required_dynamic_aliases = true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--tb=short"
xfail_strict = true
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
filterwarnings = ["error"]
[tool.uv.build-backend]
module-name = "pangea"
module-root = ""