-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
70 lines (64 loc) · 1.53 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
69
70
[tool.black]
exclude = '''
/(
\.git
| \.github
| \.idea
| \.vscode
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[build-system]
requires = ["setuptools>=75.2.0"]
build-backend = "setuptools.build_meta"
[project]
name = "fw-fanctrl-gui"
version = "0.0.1"
description = "Simple customtkinter python gui with system tray for fw-fanctrl. A separate installation of fw-fanctrl is required."
keywords = ["framework", "laptop", "fan", "control", "gui"]
readme = "README.md"
authors = [
{ name = "leopoldhub" },
]
maintainers = [
{ name = "leopoldhub" },
]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Topic :: System :: Hardware",
]
requires-python = ">=3.12"
dependencies = [
"pygubu~=0.36",
"customtkinter~=5.2.2",
"pystray~=0.19.5",
"fw_fanctrl==1.0.1",
"blinker~=1.9.0"
]
optional-dependencies = { dev = [
"pygubu-designer~=0.40",
"black==24.8.0",
"build>=1.2.2.post1",
"setuptools>=75.7.0",
"PyGObject~=3.50.0"
] }
[project.urls]
Homepage = "https://github.com/leopoldhub/fw-fanctrl-gui"
Documentation = "https://github.com/leopoldhub/fw-fanctrl-gui"
Repository = "https://github.com/leopoldhub/fw-fanctrl-gui.git"
Issues = "https://github.com/leopoldhub/fw-fanctrl-gui/issues"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.package-data]
"fw_fanctrl_gui" = ["_resources/**/*"]
[project.scripts]
fw-fanctrl-gui = "fw_fanctrl_gui.__main__:main"