-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (88 loc) · 2.91 KB
/
Copy pathpyproject.toml
File metadata and controls
100 lines (88 loc) · 2.91 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "pipecat-ai-cli"
dynamic = ["version"]
description = "CLI for building, deploying, and monitoring Pipecat voice agents"
license = "BSD-2-Clause"
license-files = ["LICENSE"]
readme = "README.md"
requires-python = ">=3.11"
keywords = ["pipecat", "ai", "cli", "voice", "agents", "scaffolding"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Communications :: Conferencing",
]
dependencies = [
"typer>=0.20.0,<1",
"rich>=13.0.0,<14",
"jinja2>=3.1.0,<4",
"questionary>=2.0.0,<3",
"ruff>=0.12.1,<1",
"pipecatcloud>=0.7.1"
]
[project.urls]
Source = "https://github.com/pipecat-ai/pipecat-cli"
Website = "https://pipecat.ai"
Issues = "https://github.com/pipecat-ai/pipecat-cli/issues"
[project.optional-dependencies]
tail = [ "pipecat-ai-tail>=0.0.5" ]
[project.scripts]
pipecat = "pipecat_cli.main:app"
pc = "pipecat_cli.main:app"
[dependency-groups]
dev = [
"pytest>=9.0.0,<10",
"pytest-cov~=7.0.0",
"pre-commit~=4.5.1",
"build~=1.4.0",
# Pipecat with all service extras for auto-generating imports and configs
"pipecat-ai[aic,anthropic,assemblyai,asyncai,aws,aws-nova-sonic,azure,camb,cartesia,cerebras,daily,deepseek,deepgram,elevenlabs,fal,fireworks,fish,gladia,google,gradium,groq,heygen,hume,inception,inworld,kokoro,lmnt,mistral,moondream,neuphonic,novita,nvidia,openai,openrouter,perplexity,piper,qwen,resembleai,rime,sagemaker,sambanova,sarvam,silero,simli,smallest,soniox,speechmatics,tavus,together,ultravox,webrtc,websocket,xai]==1.3.0",
"setuptools~=78.1.1",
"setuptools_scm~=8.3.1",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
pipecat_cli = ["templates/*.jinja2"]
[tool.setuptools_scm]
local_scheme = "no-local-version"
fallback_version = "0.0.0-dev"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
pythonpath = ["src"]
addopts = "-v --tb=short"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
[tool.ruff]
exclude = [
".git",
"__pycache__",
"dist",
"build",
"tests", # Exclude tests from ruff
"src/pipecat_cli/templates/*.jinja2", # Jinja2 templates, not Python files
]
line-length = 100
[tool.ruff.lint]
select = [
"I", # Import rules
"UP", # Modern Python
]
[tool.coverage.run]
command_line = "--module pytest"
source = ["src"]
omit = ["*/tests/*"]