py package update

This commit is contained in:
Prasanna721 2026-01-10 08:58:38 -08:00
parent 906577759a
commit 3376e9d87f
2 changed files with 4 additions and 6 deletions

View file

@ -4,7 +4,7 @@
This package adds persistent memory to Pipecat voice AI pipelines using Supermemory.
**Tech Stack:** Python 3.10+, Pipecat, Supermemory SDK
**Tech Stack:** Python >=3.10, Pipecat, Supermemory SDK
## Commands

View file

@ -8,7 +8,7 @@ version = "0.1.0"
description = "Supermemory integration for Pipecat - memory-enhanced conversational AI pipelines"
readme = "README.md"
license = "MIT"
requires-python = ">=3.8.1"
requires-python = ">=3.10"
authors = [
{ name = "Supermemory", email = "support@supermemory.ai" }
]
@ -25,8 +25,6 @@ classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
@ -66,14 +64,14 @@ include = [
[tool.black]
line-length = 100
target-version = ["py38"]
target-version = ["py310"]
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.8"
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true