-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 783 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (26 loc) · 783 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
[project]
name = "agent-migrator"
version = "0.1.1"
description = "Migrate conversation history between AI coding agents"
readme = "README.md"
license = { text = "CC-BY-SA-4.0" }
authors = [
{ name = "Troy Gunawardene", email = "gunawardene.t@northeastern.edu" }
]
requires-python = ">=3.10"
dependencies = [
"rich>=15.0.0",
"questionary>=2.1.1",
"notify-py>=0.3.43",
]
[project.scripts]
agent-migrator = "agent_migrator.cli:main"
agent-migrator-hook = "agent_migrator.on_stop_failure:main"
[project.urls]
Homepage = "https://github.com/builderpepc/agent-migrator"
Repository = "https://github.com/builderpepc/agent-migrator"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["agent_migrator"]