forked from newAM/monitorcontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 1.11 KB
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
44
45
46
47
48
49
[project]
name = "monitorcontrol"
description = "Monitor controls using MCCS over DDC-CI."
version = "4.1.1"
authors = [{ name = "Alex Martens", email = "alex+monitorcontrol@thinglab.org" }]
license = "MIT"
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.11.11",
"sphinx>=7.4.7",
"sphinx-rtd-theme>=3.0.2",
"toml>=0.10.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>=77"]
build-backend = "setuptools.build_meta"
[tool.ruff.lint]
extend-select = [
# flake8-builtins
"A",
# flake8-unused-arguments
"ARG",
# flake8-bugbear
"B",
# flake8-logging-format
"G",
# pep8-naming
"N",
]