-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (26 loc) · 774 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (26 loc) · 774 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 = "receiptguard"
version = "0.1.0"
description = "An MCP verification gateway that makes a Qwen agent unable to lie about what its tools did."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
dependencies = [
"fastapi>=0.110",
"uvicorn[standard]>=0.29",
"openai>=1.30", # OpenAI-compatible client -> Alibaba DashScope endpoint
"pydantic>=2.6",
"httpx>=0.27",
]
[project.optional-dependencies]
dev = ["pytest>=8.0", "matplotlib>=3.8"]
[project.scripts]
receiptguard = "receiptguard.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/receiptguard"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]