-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 785 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 785 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "claude-code-remote"
version = "0.3.0"
description = "Remote access to Claude Code CLI over Tailscale"
requires-python = ">=3.10"
dependencies = [
"click",
"fastapi",
"uvicorn[standard]",
"httpx",
"pydantic>=2.0",
"websockets",
"rumps; sys_platform == 'darwin'",
"apscheduler>=3.10,<4",
"croniter>=1.3",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-asyncio",
"pytest-httpx",
]
[project.scripts]
ccr = "claude_code_remote.cli:cli"
[tool.hatch.build.targets.wheel]
packages = ["src/claude_code_remote"]
[tool.hatch.build.targets.wheel.force-include]
"src/claude_code_remote/dashboard/dist" = "claude_code_remote/dashboard/dist"