-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
58 lines (50 loc) · 1.18 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
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools>=69.5.1", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ResolutionSwitcher"
version = "3.0.3"
description = "Command line tool to change Windows display settings"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Andre Bocchini"}
]
keywords = ["windows", "display", "resolution", "hdr", "cli"]
dependencies = [
"colorama==0.4.6",
"termcolor==2.4.0",
]
[project.optional-dependencies]
dev = [
"pre-commit==3.7.0",
"pyinstaller==6.6.0",
"pyinstaller-hooks-contrib==2024.4",
]
build = [
"pywin32==306",
"pywin32-ctypes==0.2.2",
]
lint = [
"ruff==0.14.10",
"pyright==1.1.407",
]
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["resolution_switcher"]
[project.scripts]
resolution-switcher = "resolution_switcher.cli:main"
[tool.setuptools.package-data]
"*" = ["LICENSE"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.pyright]
include = ["src"]
reportArgumentType = "warning"
reportAssignmentType = "warning"
reportAttributeAccessIssue = "warning"
reportCallIssue = "warning"
reportGeneralTypeIssues = "error"
reportMissingImports = "error"