-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (78 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
85 lines (78 loc) · 1.7 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
[project]
name = "biged"
version = "0.10.0"
requires-python = ">=3.11"
# Core runtime deps — see requirements.txt for the full pinned list
dependencies = [
"flask>=3.0",
"httpx>=0.27",
"anthropic>=0.40",
"psutil>=5.9",
"tomlkit>=0.12",
"google-generativeai>=0.8",
"scikit-learn>=1.4",
"pandas>=2.1",
"cryptography>=42.0",
"fastmcp>=2.0",
"nvidia-ml-py>=12.0",
]
[project.optional-dependencies]
launcher = [
"pillow>=10.0.0",
"pystray>=0.19",
"pywebview>=5.0",
]
fleet = [
"httpx>=0.27",
"anthropic>=0.40",
"google-generativeai>=0.8",
"scikit-learn>=1.4",
"pandas>=2.1",
"cryptography>=42.0",
"fastmcp>=2.0",
"nvidia-ml-py>=12.0",
"tomlkit>=0.12",
]
[tool.pytest.ini_options]
pythonpath = ["fleet"]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.ruff]
target-version = "py311"
line-length = 120
exclude = [
".venv",
"node_modules",
"fleet/skills/",
"fleet/factorio/",
"tests/factorio/",
"autoresearch/",
"deploy/",
]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # pyflakes (undefined names, unused imports)
"W", # pycodestyle warnings
"I", # isort
]
ignore = [
"E501", # line too long
"E402", # module-level import not at top -- fleet uses lazy imports by design
"F401", # unused import -- many intentional re-exports
]
[tool.ruff.lint.isort]
known-first-party = ["db", "config", "providers", "comms", "health_monitor"]
[tool.coverage.run]
source = ["fleet"]
omit = [
"fleet/skills/*",
"fleet/factorio/*",
"fleet/tenants/*",
"fleet/knowledge/*",
"tests/*",
]
branch = true
[tool.coverage.report]
show_missing = true
skip_covered = false