-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 1009 Bytes
/
pyproject.toml
File metadata and controls
53 lines (45 loc) · 1009 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[project]
name = "cli-claw"
version = "0.2.3"
description = "A provider-agnostic multi-CLI agent runtime platform"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.10.0",
"loguru>=0.7.3",
"typer>=0.12.5",
"rich>=13.9.4",
"httpx>=0.27.0",
"dingtalk-stream>=0.19.0",
"websockets>=12.0",
"python-socketio>=5.11.0",
"msgpack>=1.0.7",
"cryptography>=42.0.0",
]
[project.scripts]
cli-claw = "cli_claw.cli.main:app"
cli_claw = "cli_claw.cli.main:app"
[project.optional-dependencies]
dev = [
"pytest>=8.3.5",
"pytest-asyncio>=0.25.3",
"ruff>=0.11.0",
]
[build-system]
requires = ["hatchling>=1.27.0"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/cli_claw"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
]