-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpyproject.toml
43 lines (37 loc) · 1.08 KB
/
pyproject.toml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
[project]
name = "monitorcontrol"
description = "Monitor controls using MCCS over DDC-CI."
version = "3.1.0"
authors = [{ name = "Alex Martens", email = "[email protected]" }]
license.file = "LICENSE"
readme = "README.rst"
requires-python = ">= 3.9"
dependencies = [
"pyudev>=0.23.3 ; sys_platform != 'win32'",
]
[dependency-groups]
dev = [
"coveralls>=4.0.1",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"ruff>=0.9.1",
"sphinx>=7.4.7",
"sphinx-rtd-theme>=3.0.2",
"toml>=0.10.2",
"voluptuous>=0.15.2",
]
[project.urls]
Repository = "https://github.com/newAM/monitorcontrol"
Documentation = "https://newam.github.io/monitorcontrol"
Changelog = "https://github.com/newAM/monitorcontrol/blob/main/CHANGELOG.md"
Issues = "https://github.com/newAM/monitorcontrol/issues"
[project.scripts]
monitorcontrol = "monitorcontrol.__main__:main"
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["monitorcontrol"]
[tool.ruff.lint]
# Add flake8-bugbear and pep8-naming rules
extend-select = ["B", "N"]