35 lines
700 B
TOML
35 lines
700 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",
|
|
"pathlib>=1.0.1",
|
|
"platformdirs>=4.10.0",
|
|
"tomli-w>=1.2.0",
|
|
]
|
|
|
|
[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"]
|