-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (81 loc) · 2.3 KB
/
Copy pathpyproject.toml
File metadata and controls
90 lines (81 loc) · 2.3 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
[project]
name = "marvin"
version = "0.3.0"
description = "Obsidian-native long-term memory for coding and chat agents over MCP"
readme = "README.md"
license = "MIT"
requires-python = ">=3.12"
authors = [
{ name = "r0k3", email = "robert.kende@gmail.com" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"fastapi>=0.135.2",
"fastembed>=0.8.0",
"gitpython>=3.1.46",
"langextract>=1.2.0",
"litellm",
"mcp>=1.26.0",
"nats-py>=2.14.0",
"pydantic>=2.12.5",
"pydantic-settings>=2.13.1",
"pyyaml>=6.0.3",
"sqlite-vec>=0.1.7",
"uvicorn>=0.42.0",
"watchdog>=6.0.0",
]
[project.optional-dependencies]
# Linux + NVIDIA GPU (CUDA 12.x, cuDNN 9.x). On install, the
# ``onnxruntime-gpu`` wheel and the matching NVIDIA pip wheels are
# pulled in; ``marvin.gpu.bootstrap`` then preloads the .so files via
# ctypes so onnxruntime finds them without needing LD_LIBRARY_PATH.
# Drops about ~2.5 GB on disk; CPU-only deployments should NOT install
# this extra. macOS / Windows users should install ``onnxruntime-coreml``
# / ``onnxruntime-directml`` separately as needed.
gpu = [
"onnxruntime-gpu>=1.25",
"nvidia-cublas-cu12",
"nvidia-cuda-runtime-cu12",
"nvidia-cudnn-cu12",
"nvidia-curand-cu12",
"nvidia-cufft-cu12",
"nvidia-cuda-nvrtc-cu12",
"nvidia-nvjitlink-cu12",
]
[project.urls]
Homepage = "https://github.com/r0k3/marvin"
Repository = "https://github.com/r0k3/marvin"
Documentation = "https://r0k3.github.io/marvin"
Issues = "https://github.com/r0k3/marvin/issues"
[project.scripts]
marvin = "marvin.cli:main"
[dependency-groups]
dev = [
"mkdocs",
"mkdocs-material",
"mkdocs-material-extensions",
"pre-commit>=4.0",
"pytest>=9.0.2",
"ruff>=0.15.7",
]
[build-system]
requires = ["hatchling>=1.27.0"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/marvin"]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
ignore = ["E501"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]