Add pyproject.toml with runtime and dev dependency groups plus a uv.lock, replacing requirements.txt and pytest.ini. Update the Makefile and README to use uv (sync/run/test). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
31 lines
590 B
TOML
31 lines
590 B
TOML
[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"
|