-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.02 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch]
installer = "uv"
[project]
name = "prompt_playground"
version = "0.1.0"
description = "Prompt Playground — MLflow Prompt Registry UI for browsing, running, and evaluating prompts"
readme = "README.md"
dynamic = ["dependencies"]
# DBR 15 (Python 3.11) is the minimum recommended runtime for mlflow[databricks]>=3.1.0
[tool.hatch.envs.dbr15]
template = "dbr15"
extra-dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"mlflow[databricks]>=3.1.0",
"databricks-sdk>=0.30.0",
"pydantic>=2.0.0",
"aiohttp>=3.9.0",
"httpx>=0.27.0", # used by FastAPI TestClient in tests
]
features = []
[tool.hatch.envs.dbr16]
template = "dbr16"
extra-dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"mlflow[databricks]>=3.1.0",
"databricks-sdk>=0.30.0",
"pydantic>=2.0.0",
"aiohttp>=3.9.0",
"httpx>=0.27.0",
]
features = []
[tool.hatch.build.targets.wheel]
packages = ["src/server"]