-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (58 loc) · 1.67 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (58 loc) · 1.67 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
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "tg-ops"
version = "0.1.0"
description = "A secure Telegram bot for remote system operations and monitoring on Linux hosts"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [
{ name = "Idir Oura", email = "idir.oura@protonmail.com" }
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: System :: Monitoring",
"Topic :: System :: Systems Administration",
]
keywords = ["telegram", "bot", "monitoring", "linux", "devops", "remote-control"]
dependencies = [
"python-telegram-bot[webhooks]>=22.3,<23.0",
"requests>=2.32.5,<3.0.0",
"docker>=7.1.0,<8.0.0",
"psutil>=7.2.1",
"typer>=0.12,<1.0"
]
[project.urls]
Homepage = "https://github.com/idirxv/tg-ops"
Repository = "https://github.com/idirxv/tg-ops"
[project.scripts]
tg-ops = "tg_ops.main:main"
[tool.poetry]
packages = [{ include = "tg_ops" }]
include = ["LICENSE"]
[tool.poetry.group.dev.dependencies]
ruff = "^0.14.10"
mypy = "^1.19.1"
pytest = "^8.0"
pytest-asyncio = "^0.24"
pytest-mock = "^3.14"
[tool.mypy]
ignore_missing_imports = true
check_untyped_defs = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = []