-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (94 loc) · 2.34 KB
/
pyproject.toml
File metadata and controls
103 lines (94 loc) · 2.34 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
92
93
94
95
96
97
98
99
100
101
102
103
[project]
name = "memvee"
version = "0.1.2"
description = "Structured, temporal memory for AI agents."
readme = "README.md"
license = "MIT"
authors = [
{ name = "bartosz roguski", email = "bartosz.k.roguski@gmail.com" }
]
requires-python = ">=3.13"
keywords = ["ai", "agents", "memory", "llm", "rag", "temporal"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
]
dependencies = [
"aiosqlite>=0.22.1",
"openai>=2.15.0",
"pydantic>=2.12.5",
"pydantic-ai-slim>=1.75.0",
"python-dateutil>=2.9.0",
"sqlite-vec>=0.1.6",
"textual>=3.5.0",
]
[project.optional-dependencies]
postgres = [
"asyncpg>=0.30.0",
"pgvector>=0.3.6",
]
voyage = ["voyageai>=0.3.0"]
cohere = ["cohere>=5.0.0"]
local = ["fastembed>=0.6.0"]
[project.scripts]
memv = "memv:main"
[project.urls]
Homepage = "https://github.com/vstorm-co/memv"
Documentation = "https://vstorm-co.github.io/memv/"
Repository = "https://github.com/vstorm-co/memv"
Issues = "https://github.com/vstorm-co/memv/issues"
Changelog = "https://github.com/vstorm-co/memv/blob/main/CHANGELOG.md"
[build-system]
requires = ["uv_build>=0.9.21,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "memv"
[dependency-groups]
dev = [
"asyncpg>=0.30.0",
"cohere>=5.0.0",
"fastembed>=0.6.0",
"ipython>=9.9.0",
"pgvector>=0.3.6",
"voyageai>=0.3.0",
"pre-commit>=4.5.1",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"ruff>=0.14.10",
"ty>=0.0.1a7",
]
docs = [
"mkdocs>=1.6",
"mkdocs-material>=9.6",
"mkdocstrings[python]>=0.28",
]
examples = [
"autogen-agentchat>=0.7",
"autogen-ext[openai]>=0.7",
"crewai>=0.11",
"langchain-openai>=1.0",
"langgraph>=1.0",
"llama-index>=0.14",
"llama-index-llms-openai>=0.6",
"rich>=13.0",
"typer>=0.15",
]
[tool.ruff]
line-length = 135
[tool.ruff.lint]
select = [
"I", # isort
"ERA", # dead code
"F401", # unused imports
"E", # pycodestyle error
"W", # pycodestyle warning
"B", # flake8-bugbear
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
asyncio_mode = "auto"