Files
BEdit/pyproject.toml

37 lines
785 B
TOML

[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 = [
"matplotlib>=3.8,<4",
"msgpack>=1.0,<2",
"PySide6>=6.7,<7",
]
[project.scripts]
bedit-graphviz = "bedit_util.graphviz:main"
bedit-simulate = "bedit_util.simulate:main"
[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",
]