-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (77 loc) Β· 2.39 KB
/
pyproject.toml
File metadata and controls
89 lines (77 loc) Β· 2.39 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
[project]
name = "fava-trails"
version = "0.5.5"
description = "FAVA Trails π«π£ β Federated Agents Versioned Audit Trail. VCS-backed memory for AI agents via MCP."
readme = "README.md"
requires-python = ">=3.11"
license = {text = "Apache-2.0"}
authors = [{name = "Machine Wisdom Solutions Inc."}]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries",
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
]
dependencies = [
"mcp>=1.0.0",
"pydantic>=2.0.0",
"pyyaml>=6.0",
"python-ulid>=3.0.0",
"any-llm-sdk>=1.10.0",
"httpx>=0.27.0",
]
[project.optional-dependencies]
bedrock = ["any-llm-sdk[bedrock]"]
groq = ["any-llm-sdk[groq]"]
anthropic = ["any-llm-sdk[anthropic]"]
gemini = ["any-llm-sdk[gemini]"]
mistral = ["any-llm-sdk[mistral]"]
ollama = ["any-llm-sdk[ollama]"]
# Protocol extras: lightweight protocols (1-2 deps) live here as extras.
# Protocols with heavy dependency trees must be UV workspace members instead.
secom = ["llmlingua>=0.2.0"]
all = ["any-llm-sdk[bedrock,groq,anthropic,gemini,mistral,ollama]", "llmlingua>=0.2.0"]
[project.urls]
Homepage = "https://github.com/MachineWisdomAI/fava-trails"
Repository = "https://github.com/MachineWisdomAI/fava-trails"
Issues = "https://github.com/MachineWisdomAI/fava-trails/issues"
[project.scripts]
fava-trails-server = "fava_trails.server:run"
fava-trails = "fava_trails.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/fava_trails"]
[tool.hatch.build.targets.sdist]
include = [
"src/fava_trails/**",
"README.md",
"LICENSE",
"CHANGELOG.md",
"CONTRIBUTING.md",
"SECURITY.md",
"AGENTS_USAGE_INSTRUCTIONS.md",
]
[tool.hatch.build.targets.wheel.force-include]
"AGENTS_USAGE_INSTRUCTIONS.md" = "fava_trails/AGENTS_USAGE_INSTRUCTIONS.md"
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.ruff]
target-version = "py311"
line-length = 120
[tool.ruff.lint]
select = ["E", "W", "F", "I", "B", "C4", "UP"]
ignore = ["E501", "B008"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
"tests/*" = ["B011"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"ruff>=0.8.0",
]