-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 818 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (26 loc) · 818 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "evalops-workbench"
version = "0.1.0"
description = "A local-first evaluation harness for prompts, tools, and agents with regression tracking and experiment history."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [
{ name = "Ignazio De Santis" }
]
dependencies = [
"duckdb>=1.1"
]
[project.scripts]
evalops-workbench = "evalops_workbench.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
# Scope discovery to the Python package only — the Next.js dashboard
# also lives under src/ and we don't want setuptools treating those
# directories as Python modules.
include = ["evalops_workbench*"]
[tool.setuptools.package-data]
evalops_workbench = ["project.json"]