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 80 81 82 83 84 85 86 87 88 89 90
|
[project]
name = "simplemonitor"
version = "1.15.0"
description = "A simple network and host monitor"
license = "BSD-3-Clause"
authors = [
{name = "James Seward", email = "james@jamesoff.net"},
]
requires-python = ">=3.10"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: No Input/Output (Daemon)",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Topic :: System :: Monitoring",
"Typing :: Typed",
]
dynamic = ["dependencies"]
[project.scripts]
simplemonitor = "simplemonitor.monitor:main"
winmonitor = "simplemonitor.winmonitor:main"
[project.urls]
homepage = "https://github.com/jamesoff/simplemonitor"
repository = "https://github.com/jamesoff/simplemonitor"
documentation = "http://jamesoff.github.io/simplemonitor/"
[tool.poetry]
requires-poetry = ">=2.0"
include = [
"simplemonitor/html/dist/*",
"simplemonitor/html/status-template.html",
]
[tool.poetry.dependencies]
python = "^3.10.0"
arrow = ">=0.17,<1.4"
boto3 = "^1.15.16"
colorlog = ">=4.4"
paho-mqtt = "^1.5.1"
psutil = ">=5.7.2,<8.0.0"
requests = "^2.32.5"
pync = {version = "^2.0.3", platform = "darwin"}
pywin32 = {version = ">=228,<312", platform = "win32"}
Jinja2 = ">=2.11.2,<4.0.0"
twilio = "^7.16.4"
ring-doorbell = ">=0.6.0"
paramiko = ">=2.7.2,<4.0.0"
pyaarlo = ">=0.7.1.3,<0.9.0.0"
icmplib = "^3.0.3"
[tool.poetry.group.dev.dependencies]
boto3-stubs = {extras = ["sns"], version = "^1.40.47"}
codecov = "*"
coverage = "*"
mypy = "*"
bandit = "*"
freezegun = "*"
pytest = "*"
pylint = "^3.3.9"
ruff = "==0.14.0"
Sphinx = "^7.3.7"
sphinx-rtd-theme = "^3.0.2"
pytest-cov = "^7.0.0"
tox = "^3.28.0"
tox-poetry = "^0.5.0"
types-paramiko = "^4.0.0"
types-python-dateutil = "^2.9.0"
types-requests = "^2.32.4"
types-pyOpenSSL = "^24.1.0"
types-setuptools = "^80.9.0"
[tool.mypy]
ignore_missing_imports = true
[tool.ruff.lint]
ignore = ["F401"]
# Ruff defaults (F + some E), as well as I (isort) and W.
# Maybe consider adding some subset of "D" here as well
select = ["E4", "E7", "E9", "F", "I", "W"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
|