Dataclasses for the data representation

This commit is contained in:
2026-07-23 14:24:53 +02:00
commit 7e99669b31
5 changed files with 482 additions and 0 deletions

31
pyproject.toml Normal file
View File

@@ -0,0 +1,31 @@
[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[project]
name = "bedit"
version = "0.2.0"
description = "A Bondgraph and block scheme simulator"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"msgpack>=1.0,<2",
"PySide6>=6.7,<7",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
"ruff>=0.5",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
addopts = "--strict-config --strict-markers -ra"
testpaths = ["tests"]
markers = [
"unit: fast tests without GUI event-loop interaction",
"gui: tests that create or interact with Qt objects",
]