blob: 2de83a483ec3c25cbdebee801a983f25c3ed53b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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'
|