-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (37 loc) · 877 Bytes
/
pyproject.toml
File metadata and controls
40 lines (37 loc) · 877 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
[project]
name = "metacoder"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "Chris Mungall", email = "cjm@berkeleybop.org" }
]
requires-python = ">=3.10"
dependencies = [
"click>=8.1.8",
"deepeval>=3.3.4",
"evaluate>=0.4.5",
"fastmcp>=2.11.0",
"pydantic>=2.11.7",
"pyyaml>=6.0.2",
"ragas>=0.3.0",
"rouge-score>=0.1.2",
]
[project.scripts]
metacoder = "metacoder.metacoder:main"
metacoder-mcp-demo-lookup = "metacoder.mcps.demo_lookup:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.6.16",
"mkdocstrings>=0.30.0",
"mkdocstrings-python>=1.14.0",
"mypy>=1.17.1",
"pytest>=8.4.1",
"ruff>=0.12.8",
"types-click>=7.1.8",
"types-pyyaml>=6.0.12.20250516",
]