-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.71 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (49 loc) · 1.71 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "crewai-mongodb-memory"
version = "0.1.0"
description = "MongoDB Atlas-backed StorageBackend (memory store) for CrewAI's Unified Memory System."
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [{ name = "MongoDB Developer Relations" }]
keywords = ["crewai", "mongodb", "atlas", "agent", "memory", "vector-search", "storage-backend"]
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 :: Database",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
]
dependencies = [
"pymongo>=4.6",
"pydantic>=2.0",
]
[project.optional-dependencies]
crewai = ["crewai>=0.100"]
embeddings = ["voyageai>=0.3.0"]
dev = [
"pytest>=8.0",
"mongomock>=4.1",
"voyageai>=0.3.0",
"python-dotenv>=1.0",
]
[project.urls]
Homepage = "https://github.com/mongodb-developer/crewai-mongodb-memory"
Repository = "https://github.com/mongodb-developer/crewai-mongodb-memory"
Issues = "https://github.com/crewAIInc/crewAI/pull/5919"
# Constrain the build to this directory's `src/` so editable installs don't walk
# parent directories (which fails outside this package's tree).
[tool.hatch.build.targets.wheel]
packages = ["src/crewai_mongodb_memory"]
[tool.hatch.build.targets.sdist]
only-include = ["src", "tests", "demo", "README.md", "LICENSE", "pyproject.toml"]
[tool.pytest.ini_options]
testpaths = ["tests"]