Dataclasses for the data representation
This commit is contained in:
31
pyproject.toml
Normal file
31
pyproject.toml
Normal 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",
|
||||
]
|
||||
Reference in New Issue
Block a user