-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (73 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
79 lines (73 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[project]
name = "frekvens"
description = "Toolbox for the Frekvens project."
version = "2.5.0.dev0"
license = "MIT"
classifiers = [
"Private :: Do Not Upload",
]
requires-python = ">=3.10"
dependencies = [
'httpx==0.28.1',
]
[project.urls]
Homepage = "https://github.com/VIPnytt/Frekvens"
Documentation = "https://github.com/VIPnytt/Frekvens/wiki"
[project.optional-dependencies]
font = [
"fonttools==4.63.0",
"matplotlib==3.10.9",
"pillow==12.2.0",
]
[build-system]
requires = [
"setuptools",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = [
"tools/src",
]
[dependency-groups]
dependabot = [
{ include-group = "httpx" },
{ include-group = "packaging" },
]
dev = [
{ include-group = "nodejs" },
{ include-group = "ruff" },
]
httpx = [
"httpx==0.28.1",
]
nodejs = [
"nodejs-wheel==24.15.0",
]
packaging = [
"packaging==26.2",
]
platformio = [
"platformio==6.1.19",
]
ruff = [
"ruff==0.15.13",
]
scons = [
"scons==4.10.1",
]
scripts = [
{ include-group = "httpx" },
{ include-group = "nodejs" },
{ include-group = "packaging" },
"python-dotenv==1.2.2",
"tzdata==2026.2",
"tzlocal==5.3.1",
]
uv = [
"uv==0.11.15",
]
[tool.ruff]
extend-exclude = [
".pio",
]
line-length = 120