-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 925 Bytes
/
Copy pathpyproject.toml
File metadata and controls
45 lines (39 loc) · 925 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
[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-genai>=1.59.0",
"google-cloud-speech>=2.35.0",
"uvicorn[standard]>=0.40.0",
"voicevox-client>=1.1.0",
"python-dotenv>=1.2.1",
"pydantic-settings>=2.13.1",
"protobuf>=6.33.3",
]
[dependency-groups]
dev = [
"grpcio-tools>=1.76.0",
"ruff>=0.15.2",
"ty>=0.0.17",
]
example-gemini = []
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/**",
]