-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (36 loc) · 939 Bytes
/
pyproject.toml
File metadata and controls
38 lines (36 loc) · 939 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ucsfomopagent"
version = "0.1.0"
description = "An MCP server for querying the UCSF OMOP electronic health records database for rapid clinical data retrieval"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Wanjun Gu", email = "wanjun.gu@ucsf.edu"},
{name = "Gianmarco Bellucci", email = "gianmarco.bellucci@ucsf.edu"}
]
maintainers = [
{name = "Wanjun Gu", email = "wanjun.gu@ucsf.edu"},
{name = "Gianmarco Bellucci", email = "gianmarco.bellucci@ucsf.edu"}
]
keywords = [
"mcp",
"medical",
"clinical",
"electronic-health-records",
"ehr",
"omop",
"sql-server",
"healthcare",
"clinical-informatics"
]
dependencies = [
"fastmcp>=2.11.2",
"pydantic>=2.11.7",
"pymssql>=2.3.7",
]
requires-python = ">=3.11"
[project.scripts]
ucsfomopagent = "ucsfomopagent.cli:main"