-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
57 lines (51 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
56
57
[project]
name = "deepagents-backends"
version = "0.3.0"
description = "Remote storage backends for Deep Agents across S3, PostgreSQL, Azure Blob, GCS, MongoDB, and Redis/Valkey"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"aioboto3>=15.5.0",
"azure-storage-blob>=12.28.0",
"deepagents>=0.5.2",
"gcloud-aio-storage>=9.6.4",
"motor>=3.7.1",
"psycopg[binary,pool]>=3.3.2",
"redis>=7.4.0",
"wcmatch>=10.1",
]
[build-system]
requires = ["setuptools>=73.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.0.0",
"pytest-docker>=3.2.5",
"ruff>=0.15.10",
"types-redis>=4.6.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
testpaths = ["tests"]
markers = [
"unit: Unit tests (no external dependencies)",
"integration: Integration tests (require Docker services)",
"s3: Tests requiring S3/MinIO",
"postgres: Tests requiring PostgreSQL",
"azure: Tests requiring Azure Blob Storage / Azurite",
"gcs: Tests requiring Google Cloud Storage / fake-gcs-server",
"mongodb: Tests requiring MongoDB",
"redis: Tests requiring Redis/Valkey",
]
filterwarnings = [
"ignore::DeprecationWarning",
]
[tool.ruff]
line-length = 105
[tool.ruff.lint]
select = ["E", "F", "W"]