-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 946 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (36 loc) · 946 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
39
40
41
42
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "study-agent"
version = "0.1.0"
description = "OHDSI Study Agent"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"anyio>=4.12",
"faiss-cpu>=1.13",
"flask>=3.1",
"mcp>=1.0.0",
"numpy>=2.4",
"omop-alchemy>=0.6",
"pydantic>=2.0.0",
"PyYAML>=6.0",
"requests>=2.33",
"sqlalchemy>=2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.0",
"ruff>=0.11.0",
]
[project.scripts]
study-agent-mcp = "study_agent_mcp.server:main"
study-agent-acp = "study_agent_acp.server:main"
study-agent-demo-shell = "study_agent_acp.demo_shell:main"
[tool.setuptools]
packages = ["study_agent_core", "study_agent_mcp", "study_agent_acp"]
[tool.setuptools.package-dir]
study_agent_core = "core/study_agent_core"
study_agent_mcp = "mcp_server/study_agent_mcp"
study_agent_acp = "acp_agent/study_agent_acp"