-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
68 lines (59 loc) · 1.64 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[project]
name = "screen_brightness_control"
description = "A Python tool for controlling the brightness of your monitor"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [{ name = "Crozzers", email = "[email protected]" }]
dynamic = ["version"]
dependencies = [
"wmi ; platform_system=='Windows'",
"pywin32 ; platform_system=='Windows'",
"pypiwin32 ; platform_system=='Windows'"
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only"
]
[project.urls]
Source = "https://github.com/Crozzers/screen_brightness_control"
Documentation = "https://crozzers.github.io/screen_brightness_control"
Issues = "https://github.com/Crozzers/screen_brightness_control/issues"
[project.optional-dependencies]
dist = [
"build",
"setuptools",
"wheel",
"twine"
]
dev = [
"mypy",
"flake8",
"types-pywin32 ; platform_system=='Windows'",
"pytest",
"pytest-mock",
"pytest-subtests"
]
docs = [
"jsmin",
"packaging",
"pdoc>=14.1.0"
]
all = ["screen_brightness_control[dist,dev,docs]"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = { attr = "screen_brightness_control._version.__version__" }
[tool.setuptools.packages.find]
include = ["screen_brightness_control"]
[tool.mypy]
check_untyped_defs = true
[tool.pytest.ini_options]
testpaths = [
"tests"
]