-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 813 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 813 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
[build-system]
requires = ["hatchling>=1.25.0"]
build-backend = "hatchling.build"
[project]
name = "websocket-control-stackchan-server"
version = "0.1.0"
description = "A WebSocket control interface for StackChan AI agent"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.128.0",
"google-cloud-speech>=2.35.0",
"uvicorn[standard]>=0.40.0",
"voicevox-client>=1.1.0",
]
[dependency-groups]
dev = [
"ruff>=0.15.2",
"ty>=0.0.17",
]
example-gemini = [
"google-genai>=1.59.0",
]
example-claude-agent-sdk = [
"claude-agent-sdk>=0.1.39",
]
[tool.ruff]
target-version = "py313"
[tool.hatch.build.targets.wheel]
packages = ["stackchan_server"]
[tool.hatch.build.targets.sdist]
include = [
"pyproject.toml",
"README.md",
"stackchan_server/**",
]