-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.5 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (38 loc) · 1.5 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pipecat-memorysync"
dynamic = ["version"]
description = "MemorySync for Pipecat: budgeted memory recall that never stalls a voice reply, delta-only conversation persistence with idempotency seeds, and a pipeline that cannot be broken by a memory outage."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [{ name = "MemorySync", email = "support@memorysync.io" }]
keywords = ["pipecat", "voice", "agents", "memory", "memorysync", "long-term-memory"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Communications :: Conferencing",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"pipecat-ai>=1.0.0,<2",
"httpx>=0.25,<1",
]
[project.urls]
Homepage = "https://docs.memorysync.io/guides/pipecat"
Documentation = "https://docs.memorysync.io/guides/pipecat"
Repository = "https://github.com/memorysyncio/memorysync-pipecat"
Changelog = "https://github.com/memorysyncio/memorysync-pipecat/blob/main/CHANGELOG.md"
[tool.hatch.version]
path = "src/pipecat_memorysync/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["src/pipecat_memorysync"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]