-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (61 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
70 lines (61 loc) · 1.91 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
[project]
name = "hive-vault"
version = "1.12.0"
description = "Unified MCP server for AI-assisted development — on-demand Obsidian vault access + worker delegation"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
authors = [{ name = "Manuel Lorente" }]
keywords = ["mcp", "obsidian", "vault", "context-management", "ai-coding", "knowledge-management", "model-context-protocol", "claude-code", "gemini-cli", "codex-cli", "worker-delegation", "token-optimization"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Topic :: Text Processing :: Markup :: Markdown",
]
dependencies = [
"fastmcp>=2.0.0",
"httpx>=0.27.0",
"pydantic-settings>=2.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"pytest-asyncio>=0.24",
"ruff>=0.8.0",
"mypy>=1.13",
"types-PyYAML>=6.0",
]
[project.scripts]
hive = "hive.server:main"
hive-vault = "hive.server:main"
[project.urls]
Homepage = "https://github.com/mlorentedev/hive"
Documentation = "https://mlorentedev.github.io/hive/"
Repository = "https://github.com/mlorentedev/hive"
Issues = "https://github.com/mlorentedev/hive/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/hive"]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "UP", "B", "A", "SIM", "TCH"]
[tool.mypy]
python_version = "3.12"
strict = true
warn_return_any = true
warn_unused_configs = true
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
markers = ["smoke: end-to-end tests against real Ollama/OpenRouter (skip in CI)"]
addopts = "-m 'not smoke'"