forked from qualifire-dev/rogue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (65 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
72 lines (65 loc) · 1.58 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
72
[project]
name = "rogue-ai"
dynamic = ["version"]
description = "Rogue agent evaluator by Qualifire"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"a2a-sdk==0.2.10",
"backoff>=2.2.1",
"boto3>=1.40.69",
"click>=8.0.0",
"datasets==3.6.0",
"fastapi>=0.121.0",
"fastmcp>=2.12.5",
"google-adk==1.5.0",
"langchain-openai>=0.3.35",
"litellm==1.76.1",
"loguru==0.7.3",
"platformdirs>=4.3.8",
"psutil>=7.0.0",
"pydantic==2.11.7",
"pydantic-yaml==1.5.1",
"python-dotenv==1.1.1",
"requests>=2.32.4",
"rich>=14.0.0",
"rogue-ai-sdk>=0.1.3",
"uvicorn>=0.38.0",
]
[dependency-groups]
dev = [
"bandit==1.8.5",
"black==25.1.0",
"flake8==7.3.0",
"mypy==1.16.1",
"add-trailing-comma==3.2.0",
"pytest>=8.4.1",
"pytest-asyncio>=0.24.0",
"pytest-cov>=6.2.1",
"pytest-mock>=3.14.1",
"types-requests>=2.32.4.20250611",
"pre-commit>=4.3.0",
]
examples = [
"langchain>=0.3.27",
"langchain-core>=1.0.0",
"langchain-openai>=1.0.0",
"langgraph>=0.6.10",
"mcp[cli]>=1.13.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "VERSION"
pattern = "(?P<version>^\\s*[^\\r\\n\\s]+)"
[tool.hatch.build.targets.wheel]
packages = ["rogue", "examples"]
[tool.hatch.build.targets.wheel.sources]
"rogue" = "rogue"
"examples" = "examples"
[tool.uv.sources]
rogue-ai-sdk = { path = "sdks/python", editable = true }
[project.scripts]
rogue-ai = "rogue.__main__:main"
rogue-ai-example-tshirt = "examples.tshirt_store_agent.__main__:main"