This repository has been archived on 2026-08-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
DynaLab-V0/pyproject.toml
T
h3cx 2748a90576 Initial implementation
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
2026-07-07 16:33:41 +02:00

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"]