-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (68 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
77 lines (68 loc) · 1.65 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"]
build-backend = "setuptools.build_meta"
[project]
name = "monitoring"
description = "Universal HTTP/HTTPS monitoring tool"
version = "0.1.0"
authors = [{name = "Alexander"}]
license = {text = "MIT"}
readme = "README.md"
keywords = ["monitoring", "cli", "tool"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: System :: Networking :: Monitoring",
]
requires-python = ">=3.12"
# FIXME: use == to ease the things
dependencies = [
"aiohttp >= 3.9.5",
"asyncpg >= 0.29.0",
"click >= 8.1.7",
"prettytable >= 3.10.0",
"pydantic >= 2.7.0",
]
[project.urls]
repository = "https://github.com/avmlds/monitoring"
homepage = "https://github.com/avmlds/monitoring"
documentation = "https://github.com/avmlds/monitoring"
[project.scripts]
monitor = "monitoring.__main__:cli"
[project.optional-dependencies]
dev = [
"coverage==7.4.3",
"mypy==1.9.0",
"pytest-asyncio==0.23.6",
"pytest==8.1.1",
"ruff==0.11.4",
]
[tool.setuptools.packages.find]
include = ["monitoring", "monitoring.*"]
[tool.mypy]
strict = true
implicit_reexport = true
[tool.ruff]
line-length = 125
exclude = [
"build",
".venv",
"*.egg-info"
]
lint.extend-select = [
"I",
"COM",
"F",
"PL",
"UP",
]
lint.ignore = [
"COM812",
"PLR0913"
]