-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 865 Bytes
/
pyproject.toml
File metadata and controls
43 lines (36 loc) · 865 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
43
[project]
name = "just-prs-workspace"
version = "0.0.0"
description = "Workspace root for just-prs, prs-ui, and prs-pipeline"
requires-python = ">=3.13"
dependencies = [
"just-prs[reference]",
"prs-ui",
"prs-pipeline",
]
[project.scripts]
prs = "just_prs.cli:run"
just-prs = "just_prs.cli:run"
ui = "prs_ui.cli:launch_ui"
pipeline = "prs_pipeline.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["just_prs_workspace"]
[tool.uv]
managed = true
override-dependencies = [
"grpcio==1.78.0",
"grpcio-health-checking==1.78.0",
]
[tool.uv.workspace]
members = ["just-prs", "prs-ui", "prs-pipeline"]
[tool.uv.sources]
just-prs = { workspace = true }
prs-ui = { workspace = true }
prs-pipeline = { workspace = true }
[dependency-groups]
dev = [
"pytest>=9.0.2",
]