-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (31 loc) · 803 Bytes
/
pyproject.toml
File metadata and controls
39 lines (31 loc) · 803 Bytes
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
[project]
name = "ampersend-examples-python"
version = "0.0.1"
requires-python = ">=3.13"
dependencies = [
"ampersend-sdk==0.0.6",
"x402-a2a",
]
[tool.uv.sources]
x402-a2a = { git = "https://github.com/google-agentic-commerce/a2a-x402", subdirectory = "python/x402_a2a", rev = "a50b512a61880c180bc82c1332aee271f46942b6" }
[tool.uv.workspace]
members = ["python/*"]
[tool.ruff]
target-version = "py313"
[tool.ruff.lint]
select = ["I", "F401"]
[tool.mypy]
python_version = "3.13"
strict = true
explicit_package_bases = true
[[tool.mypy.overrides]]
module = ["x402_a2a.*"]
follow_untyped_imports = true
[[tool.mypy.overrides]]
module = ["tests.*"]
disable_error_code = ["no-untyped-def", "arg-type", "index", "type-arg"]
[dependency-groups]
dev = [
"ruff>=0.13.2",
"mypy>=1.8.0",
]