diff options
| author | Tomi Valkeinen <tomi.valkeinen@ideasonboard.com> | 2026-05-08 17:22:58 +0300 |
|---|---|---|
| committer | Tomi Valkeinen <tomi.valkeinen@ideasonboard.com> | 2026-05-08 17:22:58 +0300 |
| commit | 4e2b291a4acdc2cbd39f005c88bda363bc06bd34 (patch) | |
| tree | e90048d5973ad1164b109d575cf577af7daf50be /subprojects/pixpat/pyproject.toml | |
| parent | 8f94b39040e79eccd9312ed1e467fe8ebfab8860 (diff) | |
| parent | e0b7d30fd437292c88141fb08d60681870b86c6e (diff) | |
Merge commit 'e0b7d30fd437292c88141fb08d60681870b86c6e' as 'subprojects/pixpat'
Diffstat (limited to 'subprojects/pixpat/pyproject.toml')
| -rw-r--r-- | subprojects/pixpat/pyproject.toml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/subprojects/pixpat/pyproject.toml b/subprojects/pixpat/pyproject.toml new file mode 100644 index 0000000..2de83a4 --- /dev/null +++ b/subprojects/pixpat/pyproject.toml @@ -0,0 +1,26 @@ +[build-system] +requires = ["setuptools>=70.1", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "pixpat" +# Keep version in sync with meson.build (single source of truth would be nice; +# revisit if it ever drifts in practice). +version = "1.0.0" +description = "Pixel format conversion and test pattern generation" +requires-python = ">=3.9" +authors = [{name = "Tomi Valkeinen", email = "tomi.valkeinen@ideasonboard.com"}] + +[tool.setuptools] +package-dir = {"" = "pixpat-python"} +packages = ["pixpat"] + +[tool.ruff] +line-length = 100 + +[tool.ruff.lint.flake8-quotes] +inline-quotes = 'single' +multiline-quotes = 'single' + +[tool.ruff.format] +quote-style = 'single' |
