-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.24 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (53 loc) · 1.24 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
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "discord-cli-agent"
version = "0.9.1"
description = "Discord CLI for AI agents"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"click>=8.3.2",
"discord-py>=2.7.1",
]
[project.scripts]
discli = "discli.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[dependency-groups]
dev = [
"pytest>=9.0.3",
"pytest-asyncio>=1.3.0",
]
[project.optional-dependencies]
voice = [
"audioop-lts>=0.2.2 ; python_full_version >= '3.13'",
# 0.4.x is too old (no aead_xchacha20_poly1305_rtpsize); 0.5.0a167 has a
# circular import bug; 0.5.1a170 doesn't deliver audio packets for our
# flow. 0.5.2a179 actually delivers PCM and is the most recent alpha.
"discord-ext-voice-recv==0.5.2a179",
"pynacl>=1.5.0",
"silero-vad>=6.2.1",
]
elevenlabs = [
"elevenlabs>=2.43.0",
]
deepgram = [
"deepgram-sdk>=6.1.1",
]
openai-voice = [
"openai>=2.32.0",
]
local-voice = [
"faster-whisper>=1.2.1",
"piper-tts>=1.4.2",
]
all-voice = [
"discord-cli-agent[voice,elevenlabs,deepgram]",
]