-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 3.06 KB
/
pyproject.toml
File metadata and controls
34 lines (28 loc) · 3.06 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
[project]
name = "component-migration-agent"
version = "0.1.0"
description = "Multi-agent system for migrating React component styling architectures"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"claude-agent-sdk>=0.1.0",
"rich>=13.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"ruff>=0.4.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
migration-agent = "migration_agent.agent:main"
migration-demo = "migration_agent.demo:main"
[tool.hatch.build.targets.wheel]
packages = ["migration_agent"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]