This repository was archived by the owner on Jul 5, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathpyproject.toml
More file actions
145 lines (126 loc) · 3.61 KB
/
Copy pathpyproject.toml
File metadata and controls
145 lines (126 loc) · 3.61 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "pipecat-ai-flows"
dynamic = ["version"]
description = "Conversation Flow management for Pipecat AI applications"
license = { text = "BSD 2-Clause License" }
readme = "README.md"
requires-python = ">=3.11"
keywords = ["pipecat", "conversation", "flows", "state machine", "ai", "llm"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Communications :: Conferencing",
"Topic :: Multimedia :: Sound/Audio",
]
dependencies = [
# Final standalone release. Pipecat Flows now lives in pipecat-ai under
# `pipecat.flows`; this package is frozen at this snapshot. Pin to the
# pre-Flows Pipecat line (< 1.5.0): this package stays the Flows provider for
# that era, and it deliberately cannot coexist with a pipecat-ai that already
# bundles `pipecat.flows`. Upgrading Pipecat past 1.4.x therefore forces
# dropping this package and importing `pipecat.flows` instead.
"pipecat-ai>=1.4.0,<1.5.0",
"loguru~=0.7.3",
"docstring_parser>=0.16,<1",
]
[project.urls]
Source = "https://github.com/pipecat-ai/pipecat-flows"
Website = "https://www.pipecat.ai"
[dependency-groups]
dev = [
"build~=1.4.0",
"pip-tools~=7.5.3",
"pre-commit~=4.5.1",
"pyright>=1.1.404,<1.2",
"pytest>=9.0.0,<10",
"pytest-asyncio>=1.0.0,<2",
"pytest-aiohttp>=1.0.0,<2",
"pytest-cov~=4.1.0",
"ruff>=0.12.11,<1",
"setuptools~=78.1.1",
"setuptools_scm~=8.3.1",
"python-dotenv>=1.0.1,<2.0.0",
"pipecat-ai[webrtc,websocket,daily,silero,deepgram,cartesia,openai,anthropic,google,aws,runner,evals]>=1.4.0,<1.5.0",
"towncrier~=25.8.0",
]
docs = [
"sphinx>=8.1.3",
"sphinx-rtd-theme",
"sphinx-markdown-builder",
"sphinx-autodoc-typehints",
"toml",
]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.ruff]
exclude = [".git"]
line-length = 100
[tool.ruff.lint]
select = [
"D", # Docstring rules
"I", # Import rules
"UP", # Modern Python
]
ignore = [
"D105", # Missing docstring in magic methods (__str__, __repr__, etc.)
]
[tool.ruff.lint.per-file-ignores]
# Skip docstring checks for non-source code
"examples/**/*.py" = ["D"]
"tests/**/*.py" = ["D"]
"docs/**/*.py" = ["D"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.setuptools_scm]
local_scheme = "no-local-version"
fallback_version = "0.0.0-dev"
[tool.towncrier]
package = "pipecat"
package_dir = "src"
filename = "CHANGELOG.md"
directory = "changelog"
start_string = "<!-- towncrier release notes start -->\n"
template = "changelog/_template.md.j2"
title_format = "## [{version}] - {project_date}"
issue_format = "[#{issue}](https://github.com/pipecat-ai/pipecat-flows/pull/{issue})"
underlines = ["", "", ""]
wrap = true
[[tool.towncrier.type]]
directory = "added"
name = "Added"
showcontent = true
[[tool.towncrier.type]]
directory = "changed"
name = "Changed"
showcontent = true
[[tool.towncrier.type]]
directory = "deprecated"
name = "Deprecated"
showcontent = true
[[tool.towncrier.type]]
directory = "removed"
name = "Removed"
showcontent = true
[[tool.towncrier.type]]
directory = "fixed"
name = "Fixed"
showcontent = true
[[tool.towncrier.type]]
directory = "performance"
name = "Performance"
showcontent = true
[[tool.towncrier.type]]
directory = "security"
name = "Security"
showcontent = true
[[tool.towncrier.type]]
directory = "other"
name = "Other"
showcontent = true