-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (72 loc) · 1.43 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (72 loc) · 1.43 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "wolsocketproxy"
version = "0.4.0"
description = "A socket proxy with wake-on-lan feature."
authors = [
{name = "Song Fuchang", email = "song.fc@gmail.com"}
]
license = "Apache-2.0"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: System :: Networking"
]
requires-python = ">=3.12"
dependencies = [
"aiohttp==3.13.5",
"croniter==6.0.0",
"dataclass-wizard==0.39.1",
"icmplib==3.0.4",
"redfish==3.3.5",
"setproctitle==1.3.7",
"wakeonlan==3.1.0",
]
[project.optional-dependencies]
dev = [
"wolsocketproxy[lint]",
"wolsocketproxy[build]",
]
lint = [
"ty",
"ruff",
]
build = [
"build[virtualenv]==1.5.0",
]
[project.urls]
source = "https://github.com/notsyncing/wolsocketproxy"
issues = "https://github.com/notsyncing/wol-socket-proxy/issues"
[project.scripts]
wolsocketproxy = "wolsocketproxy:main"
[tool.ruff]
line-length = 120
src = ["src"]
target-version = "py312"
lint.select = ["ALL"]
lint.ignore = [
"ASYNC110",
"COM812",
"D100",
"D101",
"D102",
"D103",
"D104",
"D107",
"D203",
"D211",
"D213",
"DTZ005",
"S101",
"EM102",
"FBT001",
"FBT003",
"ISC001",
"TRY003",
"TRY201",
"PLR0913",
]