-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (66 loc) · 1.95 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (66 loc) · 1.95 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=69", "setuptools-scm>=8"]
[project]
name = "nemo-agent-toolkit-redis"
dynamic = ["version"]
requires-python = ">=3.11,<3.14"
description = "Redis Agent Memory integration for NVIDIA NeMo Agent Toolkit"
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [{ name = "Redis" }]
maintainers = [{ name = "Redis" }]
keywords = ["ai", "agents", "memory", "redis", "nemo", "nat"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"agent-memory-client>=0.14.0,<1.0.0",
"langchain-core>=0.3.0,<2.0.0",
"numpy>=1.24",
"nvidia-nat-core>=1.6.0,<2.0.0",
"redis>=5.0.0,<6.0.0",
"redis-agent-memory>=0.0.4,<1.0.0",
"redisvl>=0.16.0,<1.0.0",
]
[project.optional-dependencies]
test = [
"pytest>=8.3,<9.0",
"pytest-asyncio>=0.24,<1.0",
"testcontainers>=4.3.1,<5",
]
[project.urls]
documentation = "https://github.com/redis-developer/nemo-agent-toolkit-redis/tree/main/docs"
issues = "https://github.com/redis-developer/nemo-agent-toolkit-redis/issues"
source = "https://github.com/redis-developer/nemo-agent-toolkit-redis"
[project.entry-points.'nat.plugins']
nat_redis = "nat.plugins.redis.register"
[dependency-groups]
dev = [
"nvidia-nat-langchain>=1.5.0,<2.0.0",
"pytest>=8.3,<9.0",
"pytest-asyncio>=0.24,<1.0",
"ruff>=0.15.0,<0.16.0",
"testcontainers>=4.3.1,<5",
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["nvidia_nat_redis*", "nat.plugins*"]
[tool.setuptools_scm]
git_describe_command = "git describe --long --first-parent"
[tool.uv]
managed = true
package = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
testpaths = ["tests"]
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "W", "UP"]