26 lines
657 B
TOML
26 lines
657 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "traffic-checker"
|
|
version = "0.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"] |