Files
DynaLab/pyproject.toml

32 lines
628 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]
dynalab-protocol = { path = "../dynalab-protocol", editable = true }
dpg-gauges = { git = "https://git.h3cx.dev/h3cx/dpg-gauges.git" }
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]