-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.28 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (52 loc) · 1.28 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>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "throttled"
dynamic = ["version"]
description = "Linux daemon for Intel CPU power limits and firmware-induced throttling"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "throttled maintainers" }]
dependencies = [
"configparser==7.2.0",
"dbus-fast==5.0.22",
]
classifiers = [
"Environment :: No Input/Output (Daemon)",
"Intended Audience :: System Administrators",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: System :: Hardware",
"Topic :: System :: Systems Administration",
]
[project.urls]
Homepage = "https://github.com/erpalma/throttled"
Issues = "https://github.com/erpalma/throttled/issues"
[project.scripts]
throttled = "throttled:main"
[tool.setuptools]
py-modules = ["mmio", "throttled", "throttled_version"]
[tool.setuptools.dynamic]
version = { attr = "throttled_version.__version__" }
[tool.black]
line-length = 120
skip-string-normalization = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| venv
| _build
| buck-out
| build
| dist
)/
'''