-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (61 loc) · 1.56 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (61 loc) · 1.56 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 = "agents-workflow-cli"
version = "0.1.1"
description = "CLI tool for managing and executing workflows on the Agents Platform"
readme = "README.md"
license = "MIT"
requires-python = ">=3.13,<4.0"
dependencies = [
"typer>=0.15.0",
"rich>=13.0.0",
"pyyaml>=6.0",
"httpx>=0.27.0",
"jsonschema>=4.23.0",
"agents-workflow-models==0.1.5",
]
[tool.uv.sources]
agents-workflow-models = { path = "shared-models", editable = true }
[project.scripts]
workflow = "cli.main:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/cli"]
[tool.hatch.build.targets.sdist]
include = ["src/cli"]
[dependency-groups]
dev = [
"ruff>=0.12.0",
"pytest>=8.0.0",
"pytest-asyncio>=0.25.0",
"pytest-httpx>=0.35.0",
"pre-commit>=4.0.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
markers = [
"integration: live API integration tests (require --host, --api-key, --org flags)",
]
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.ruff.format]
quote-style = "single"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"UP", # pyupgrade
]
ignore = [
"E501", # line too long (handled by formatter)
"B008", # do not perform function calls in argument defaults (for Typer)
"UP042", # keep str + Enum pattern for Typer compatibility and shared-models consistency
]
[tool.ruff.lint.isort]
known-first-party = ["cli"]