-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (70 loc) · 1.51 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (70 loc) · 1.51 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
73
74
75
76
77
78
79
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[project]
name = "kairocli"
version = "0.1.0"
description = "Kairo CLI is a Python-native agent CLI for software engineering workflows."
readme = "README.md"
requires-python = ">=3.11,<3.15"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "Kairo CLI contributors" }]
dependencies = [
"beautifulsoup4>=4.12",
"fastapi>=0.115",
"httpx>=0.27",
"jieba>=0.42",
"markdownify>=0.13",
"mcp>=1.0",
"pillow>=10.4",
"prompt-toolkit>=3.0.48",
"pydantic>=2.9",
"pydantic-settings>=2.5",
"qrcode>=8.0",
"rich>=13.9",
"textual>=1.0",
"tree-sitter>=0.23",
"tree-sitter-language-pack>=1.12",
"uvicorn>=0.30",
"PyJWT>=2.13",
"bcrypt>=4.0",
"python-multipart>=0.0.9",
]
[project.optional-dependencies]
dev = [
"httpx2>=2.12.0",
"mypy>=1.13",
"pytest>=8.3",
"pytest-asyncio>=0.24",
"ruff>=0.8",
]
[project.scripts]
kairocli = "kairocli.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/kairocli"]
[tool.hatch.build.targets.sdist]
include = [
"src/kairocli",
"tests",
"README.md",
"LICENSE",
"AGENTS.md",
"KAIRO.md",
"pyproject.toml",
]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
asyncio_mode = "auto"
faulthandler_timeout = 60
asyncio_default_fixture_loop_scope = "function"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "ASYNC"]
[tool.mypy]
python_version = "3.11"
strict = true
packages = ["kairocli"]