-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.12 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (42 loc) · 1.12 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
[project]
name = "dotfiles"
version = "0.1.0"
requires-python = ">=3.13"
# UV global tools - installed as isolated environments via uv tool install.
# Listed here for Renovate to track version updates.
# These conflict with each other so cannot be co-installed; use: uv tool install <package>
[dependency-groups]
tools = [
"aider-chat>=0.86.2",
"claude-swap>=0.21.0",
"git-remote-s3>=0.3.2",
"graphifyy>=0.9.43",
"huggingface-hub[mcp]>=1.23.0",
"marker-pdf>=2.0.0",
"mempalace>=3.5.0",
"mistral-vibe>=2.20.0",
"nvitop>=1.7.1",
"ruff>=0.15.22",
"serena-agent>=1.5.3",
"transformers>=5.13.1",
"vllm>=0.25.1",
"vllm-mlx>=0.4.1",
]
# Hermes gateway runtime deps - installed into hermes venv via uv pip install
hermes = [
"python-telegram-bot[webhooks]>=22.8,<23",
"croniter>=6.2.4,<7",
"fastapi[standard]>=0.139.2",
"uvicorn>=0.51.0",
]
[tool.uv]
exclude-newer = "1 week"
[tool.uv-globals]
# Packages that require --prerelease=allow during uv tool install
prerelease = ["serena-agent"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I"]