-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
pyproject.toml
68 lines (56 loc) · 1.71 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
[tool.poetry]
name = "wakeonlan"
version = "3.1.0"
description = "A small python module for wake on lan."
authors = ["Remco Haszing <remcohaszing@gmail.com>"]
license = "MIT"
readme = "README.rst"
documentation = "http://pywakeonlan.readthedocs.io"
repository = "https://github.com/remcohaszing/pywakeonlan"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: System :: Networking",
"Typing :: Typed"
]
[tool.poetry.urls]
Changelog = "https://github.com/remcohaszing/pywakeonlan/releases"
Issues = "https://github.com/remcohaszing/pywakeonlan/issues"
Sponsor = "https://github.com/sponsors/remcohaszing"
[tool.poetry.scripts]
wakeonlan = "wakeonlan:main"
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
coverage = { version = "*", extras = ["toml"] }
mypy = { version = "*", python = ">=3.8" }
ruff = { version = "*", python = ">=3.8" }
types-setuptools = { version = "*", python = ">=3.8" }
[tool.coverage.run]
branch = true
command_line = "-m unittest -v"
source = ["wakeonlan"]
[tool.coverage.report]
show_missing = true
[tool.mypy]
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
ignore_missing_imports = true
strict_optional = true
warn_return_any = true
[tool.ruff.format]
quote-style = "single"
[tool.ruff.lint]
select = ["D", "E", "F", "I", "N", "W"]
ignore = ["D200", "D212", "E501", "W505"]
[tool.ruff.lint.isort]
lines-after-imports = 2
[tool.ruff.lint.pydocstyle]
convention = "google"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"