-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
47 lines (41 loc) · 1.08 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "pipecat-ai-flows"
version = "0.0.10"
description = "Conversation Flow management for Pipecat AI applications"
license = { text = "BSD 2-Clause License" }
readme = "README.md"
requires-python = ">=3.10"
keywords = ["pipecat", "conversation", "flows", "state machine", "ai", "llm"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Communications :: Conferencing",
"Topic :: Multimedia :: Sound/Audio",
]
dependencies = [
"pipecat-ai>=0.0.50",
"loguru~=0.7.2",
]
[project.urls]
Source = "https://github.com/pipecat-ai/pipecat-flows"
Website = "https://www.pipecat.ai"
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.ruff]
line-length = 100
select = [
"D", # Docstring rules
]
ignore = ["D212"]
exclude = [
"examples"
]
[tool.ruff.pydocstyle]
convention = "google"