-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (25 loc) · 700 Bytes
/
pyproject.toml
File metadata and controls
30 lines (25 loc) · 700 Bytes
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
27
28
29
30
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "libdisplaydevice"
dynamic = ["version"]
description = "Helper scripts for libdisplaydevice"
requires-python = ">=3.14"
license = {text = "AGPL-3.0-only"}
authors = [
{name = "LizardByte", email = "lizardbyte@users.noreply.github.com"}
]
dependencies = []
[project.optional-dependencies]
lint = [
"clang-format==21.*",
"flake8==7.3.0",
]
test = [
"gcovr==8.6",
]
[project.urls]
Homepage = "https://github.com/LizardByte/libdisplaydevice#readme"
Repository = "https://github.com/LizardByte/libdisplaydevice"
Issues = "https://github.com/LizardByte/libdisplaydevice/issues"