-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 782 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (31 loc) · 782 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
[project]
name = "sap-agent-context"
version = "0.1.0"
description = "Source-backed SAP context bundles for AI agents, functional design, and field mapping."
readme = "README.md"
authors = [
{ name = "viggo", email = "229558850+viggomeesters@users.noreply.github.com" }
]
requires-python = ">=3.10"
dependencies = [
"fastembed>=0.8.0",
"pyyaml>=6.0.3",
"sqlite-vec>=0.1.9",
]
[project.scripts]
sap-agent-context = "sap_agent_context.cli:main"
[build-system]
requires = ["uv_build>=0.10.9,<0.11.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest>=9.1.1",
"ruff>=0.15.18",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]