-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 1.15 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
[tool.poetry]
name = "recallrai"
version = "0.6.6"
description = "Official Python SDK for RecallrAI - Revolutionary contextual memory system that enables AI assistants to form meaningful connections between conversations, just like human memory."
authors = ["Devasheesh Mishra <devasheesh@recallrai.com>"]
license = "MIT License"
readme = "README.md"
repository = "https://github.com/recallrai/sdk-python"
keywords = ["ai", "memory", "context", "llm", "mem0", "getzep", "zep"]
homepage = "https://recallrai.com"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
]
package-mode = true
[tool.poetry.dependencies]
python = ">=3.9,<3.15"
pydantic = "^2.11.1"
httpx = "^0.28.1"
[tool.poetry.group.dev.dependencies]
twine = "^5.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"