-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (30 loc) · 1.04 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
[tool.poetry]
name = "py3status-http-monitor"
version = "0.1.6"
description = "py3status http monitor show the status of http endpoints"
authors = ["mcgillij <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/mcgillij/py3status-http-monitor"
repository = "https://github.com/mcgillij/py3status-http-monitor"
documentation = "https://github.com/mcgillij/py3status-http-monitor"
keywords = ["http", "monitor", "status", "i3", "py3status"]
classifiers = [
"Environment :: X11 Applications",
"Intended Audience :: End Users/Desktop",
"Operating System :: POSIX :: Linux",
"Topic :: Desktop Environment :: Window Managers",
"Topic :: System :: Monitoring",
]
[tool.poetry.plugins."py3status"]
module = "py3status_http_monitor.http_monitor"
[tool.poetry.dependencies]
python = "^3.10 || ^3.11 || ^3.12"
py3status = "^3.34"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
pylint = "^2.7.2"
flake8 = "^3.8.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"