-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
23 lines (20 loc) · 773 Bytes
/
pyproject.toml
File metadata and controls
23 lines (20 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# process-engineering-suite/pyproject.toml ← put this in the repo root
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "process-engineering-suite"
version = "0.1.0"
dependencies = []
# Only include folders that actually contain Python packages
[tool.uv.workspace]
members = [
"apps/api", # your FastAPI backend
"services/calc-engine/hydraulics", # only the real Python packages
# add more later like "packages/thermo", "packages/psv", etc.
]
# Makes these imports work:
# from engsuite.hydraulics import ...
[tool.uv.sources]
engsuite-hydraulics = { path = "services/calc-engine/hydraulics", editable = true }
# engsuite-thermo = { path = "packages/thermo", editable = true } # when you add it