Files
2026-08-02 02:58:16 +03:00

26 lines
659 B
TOML

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "traffic-checker"
version = "0.1.1"
description = "Traffic consumption monitoring CLI tool for remote servers with automated alerting"
requires-python = ">=3.11"
authors = [
{ name = "Vladimir Khvan", email = "thisisnotablownfuse@gmail.com" }
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"requests>=2.32.3",
]
[project.scripts]
traffic-checker = "traffic_checker.main:main"
[tool.setuptools.packages.find]
where = ["src"]