Contains JSON hanshake and heartbeat procedure, including rejecting handshake when no data exposed by connector Simple loading screen, and then UI opens, no major UI work has been done yet
32 lines
622 B
TOML
32 lines
622 B
TOML
[project]
|
|
name = "dynalab"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"dearpygui>=2.3.1",
|
|
"dpg-gauges",
|
|
"dynalab-protocol",
|
|
]
|
|
|
|
[project.scripts]
|
|
dynalab = "dynalab.app:run"
|
|
|
|
[tool.uv]
|
|
package = true
|
|
|
|
[tool.uv.sources]
|
|
dpg-gauges = { path = "../../dpg-gauges", editable = true }
|
|
dynalab-protocol = { path = "../dynalab-protocol", editable = true }
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|