-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
56 lines (50 loc) · 1.18 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
[project]
name = "groundworkers"
version = "0.2.0"
description = "Groundworkers MCP server — read-only agentive access to OMOP vocabularies, concept graphs, and embeddings."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"mcp[cli]>=1,<2",
"pydantic>=2,<3",
"pyyaml>=6,<7",
"SQLAlchemy>=2,<3",
"psycopg[binary]>=3.1,<4",
"omop-graph>=1.1.0",
"omop-emb>=1.0.0",
]
[project.optional-dependencies]
embedding-pgvector = [
"omop-emb[pgvector]>=1.0.0",
]
embedding-faiss = [
"omop-emb[faiss-cpu]>=1.0.0",
]
dev = [
"ipython>=8.0",
"tornado>=6.5.5",
"pytest>=9.0.3",
"pytest-cov>=4.0",
"mypy>=1.8",
"ruff>=0.4",
"mkdocs-material>=9.7.1",
"mkdocstrings-python>=2.0.1",
"mkdocs>=1.6.1",
"requests>=2.33.0",
"mkdocs-mermaid2-plugin"
]
[project.scripts]
groundworkers = "groundworkers.server:main"
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"integration: requires a live backend or database",
"requires_client: requires an embedding API client",
]