build: добавлен pyproject.toml и Makefile, обновлены шаблоны
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
[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"]
|
||||
Reference in New Issue
Block a user