-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpyproject.toml
65 lines (60 loc) · 1.36 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
[tool.black]
line-length = 120
exclude = '''
/(
\.git
| \.github
| \.idea
| \.vscode
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| services
| fetch
| \.temp
)/
'''
[build-system]
requires = ["setuptools>=75.2.0"]
build-backend = "setuptools.build_meta"
[project]
name = "fw-fanctrl"
version = "1.0.0"
description = "A simple systemd service to better control Framework Laptop's fan(s)."
keywords = ["framework", "laptop", "fan", "control", "cli", "service"]
readme = "README.md"
authors = [
{ name = "TamtamHero" },
]
maintainers = [
{ name = "TamtamHero" },
{ name = "leopoldhub" },
]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Hardware",
]
requires-python = ">=3.12"
dependencies = []
optional-dependencies = { dev = [
"black==24.8.0",
"build>=1.2.2.post1",
"setuptools>=75.2.0",
] }
[project.urls]
Homepage = "https://github.com/TamtamHero/fw-fanctrl"
Documentation = "https://github.com/TamtamHero/fw-fanctrl"
Repository = "https://github.com/TamtamHero/fw-fanctrl.git"
Issues = "https://github.com/TamtamHero/fw-fanctrl/issues"
[tool.setuptools]
package-dir = { "" = "src" }
[project.scripts]
fw-fanctrl = "fw_fanctrl.__main__:main"