-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (26 loc) · 938 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (26 loc) · 938 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
[project]
name = "ai-sdk-python"
version = "0.0.0"
requires-python = ">=3.10"
license = "Apache-2.0"
[dependency-groups]
dev = ["pip-licenses>=5.5.5", "commitizen>=4", "sphinx>=7.0.0", "furo>=2025.12.19"]
[tool.uv.sources]
sap-ai-sdk-base = { workspace = true }
sap-ai-sdk-core = { workspace = true }
sap-ai-sdk-gen = { workspace = true }
[tool.uv.workspace]
members = [
"packages/*",
"sample-code",
]
[tool.pip-licenses]
# Blue Oak Council Bronze+ permissive licenses (https://blueoakcouncil.org/list)
# --partial-match is enabled, so each entry matches as a substring of the reported license string
allow-only = "Apache;MIT;BSD;ISC;Python Software Foundation;PSF;MPL-2.0;Mozilla Public License 2.0;CC0-1.0;Zlib;0BSD;CNRI-Python;Unlicense;Public Domain"
partial-match = true
ignore-packages = ["pylint", "astroid"]
[tool.pytest]
markers = [
"bedrock: mark a test as a bedrock test running in a different environment",
]