[project] name = "pipeline-editor" version = "0.1.0" description = "A desktop editor for drawing pipeline networks, built with PyQt6 on QGraphicsView." readme = "README.md" requires-python = ">=3.11" dependencies = [ "PyQt6>=6.6", ] [project.scripts] pipeline-editor = "pipeline_editor.app:main" [dependency-groups] dev = [ "pytest>=7", "pytest-qt>=4", ] [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] packages = ["pipeline_editor"] [tool.pytest.ini_options] testpaths = ["tests"] qt_api = "pyqt6" addopts = "-q"