-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (82 loc) · 2.15 KB
/
Copy pathpyproject.toml
File metadata and controls
91 lines (82 loc) · 2.15 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["hatchling>=1.18"]
build-backend = "hatchling.build"
[project]
name = "seekvfs"
version = "0.1.0"
description = "A protocol-level unified VFS for AI agents with L0/L1/L2 tiered storage."
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [{ name = "SeekVFS Contributors" }]
keywords = ["agent", "vfs", "llm", "storage", "memory"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"anyio>=4.0",
"pydantic>=2.0",
]
[project.optional-dependencies]
observability = [
"logfire>=4.32.1",
]
# Full — Maximal recipe (OceanBase + all LangChain providers) + all integrations
full = [
"pyobvector>=0.2.6",
"langchain-core>=0.3",
"langchain-openai>=0.3",
"langchain-anthropic>=0.3",
"langchain-community>=0.3",
"langgraph>=0.2",
"mcp",
"seekvfs[observability]",
]
dev = [
"pytest>=7.4",
"pytest-asyncio>=0.23",
"ruff>=0.4",
"mypy>=1.8",
"seekvfs[observability]",
]
[project.urls]
Homepage = "https://github.com/ob-labs/seekvfs"
Repository = "https://github.com/ob-labs/seekvfs"
[tool.hatch.build.targets.wheel]
packages = ["src/seekvfs", "src/seekvfs_recipes"]
[tool.hatch.build.targets.sdist]
include = [
"src/seekvfs",
"src/seekvfs_recipes",
"tests",
"README.md",
"LICENSE",
"CHANGELOG.md",
]
[tool.ruff]
line-length = 100
target-version = "py311"
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.11"
strict = false
warn_unused_ignores = true
warn_redundant_casts = true
ignore_missing_imports = true
packages = ["seekvfs", "seekvfs_recipes"]
mypy_path = "src"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = ["test_*.py"]
filterwarnings = ["ignore::DeprecationWarning"]