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
|
[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]
black = { version = "*", python = ">= 3.8" }
flake8 = { version = "*", python = ">= 3.8" }
flake8-docstrings = { version = "*", python = ">= 3.8" }
flake8-import-order = { version = "*", python = ">= 3.8" }
mypy = { version = "*", python = ">=3.8" }
pytest = "*"
pytest-cov = "*"
types-setuptools = { version = "*", python = ">=3.8" }
[tool.coverage.run]
branch = true
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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|