-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
55 lines (49 loc) · 1.42 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
[project]
name = "mongodb-session-manager"
version = "0.9.1"
description = "MongoDB session management for Strands Agents"
readme = "README.md"
requires-python = ">=3.12.8"
keywords = ["strands", "agents", "mongodb", "session", "management"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"boto3>=1.42.0",
"fastapi>=0.128.0",
"pydantic-settings>=2.12.0",
"pymongo>=4.16.0",
"strands-agents>=1.30.0",
"strands-agents-tools>=0.2.19",
"uvicorn>=0.40.0",
"uvloop>=0.22.0",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.2",
"pytest-cov>=6.0.0",
"pytest-mock>=3.14.0",
"pytest-asyncio>=1.0.0",
]
[[project.authors]]
name = "Iñaki Guinea Beristain"
email = "iguinea@gmail.com"
[project.urls]
Homepage = "https://github.com/iguinea/mongodb-session-manager"
Documentation = "https://github.com/iguinea/mongodb-session-manager/blob/main/README.md"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mongodb_session_manager"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"integration: tests requiring a real MongoDB connection",
"slow: tests that take a long time to run",
]
addopts = "-v --tb=short"