-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 876 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 876 Bytes
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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cognee-integration-strands"
version = "0.1.1"
description = "A powerful integration between Strands and Cognee providing intelligent knowledge management and retrieval capabilities for AI agents"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"cognee>=0.4.0",
"strands-agents>=1.18.0",
"strands-agents-tools>=0.2.16",
]
[project.urls]
"Homepage" = "https://github.com/topoteretes/cognee-integration-strands"
"Repository" = "https://github.com/topoteretes/cognee-integration-strands"
"Documentation" = "https://github.com/topoteretes/cognee-integration-strands#readme"
[tool.setuptools.packages.find]
where = ["."]
include = ["cognee_integration_strands*"]
exclude = ["examples*"]
[dependency-groups]
dev = [
"ruff>=0.14.6",
]