Skip to content
This repository was archived by the owner on Jan 31, 2026. It is now read-only.

Commit 79ceb28

Browse files
committed
chore: add dev dependency groups with pytest and ruff to cli and core packages
1 parent 15687a6 commit 79ceb28

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

apps/cli/pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ dependencies = [
1212
[project.scripts]
1313
ai-kit = "ai_kit_cli.main:main"
1414

15+
[dependency-groups]
16+
dev = [
17+
"pytest>=8.0.0",
18+
"ruff>=0.14.0",
19+
]
20+
1521
[build-system]
1622
requires = ["hatchling"]
1723
build-backend = "hatchling.build"

packages/core/pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ requires-python = ">=3.12"
66
readme = "README.md"
77
license = { text = "MIT" }
88

9+
[dependency-groups]
10+
dev = [
11+
"pytest>=8.0.0",
12+
"ruff>=0.14.0",
13+
]
14+
915
[build-system]
1016
requires = ["hatchling"]
1117
build-backend = "hatchling.build"

0 commit comments

Comments
 (0)