-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (45 loc) · 1009 Bytes
/
pyproject.toml
File metadata and controls
54 lines (45 loc) · 1009 Bytes
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
[project]
name = "heidi-cli"
version = "0.1.1"
description = "Heidi CLI - orchestrate Copilot SDK + Jules + OpenCode agent loops"
requires-python = ">=3.10"
dependencies = [
"typer>=0.12.3",
"pydantic>=2.6.0",
"pyyaml>=6.0.1",
"rich>=13.7.1",
"github-copilot-sdk>=0.1.23",
"keyring>=24.0.0",
"fastapi>=0.109.0",
"uvicorn>=0.27.0",
"requests>=2.31.0",
"httpx>=0.27.0",
"transformers",
"torch",
"huggingface_hub>=0.20.0",
"psutil>=5.9.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"ruff>=0.3.0",
"pytest-asyncio>=0.23.0"
]
[project.scripts]
heidi = "heidi_cli.cli:app"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
heidi_cli = []
[tool.ruff]
line-length = 100
exclude = ["openwebui/"]
[tool.ruff.lint]
ignore = ["E402", "F823"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["E402"]
[tool.pytest.ini_options]
testpaths = ["tests"]