-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.21 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (46 loc) · 1.21 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "telegram-linux-admin"
version = "3.0.0"
authors = [
{ name = "Your Name", email = "you@example.com" },
]
description = "A modern, post-quantum encrypted Telegram bot for Linux server administration with 2026 standards."
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Topic :: System :: Systems Administration",
"Topic :: Communications :: Chat",
]
dependencies = [
"python-telegram-bot[ext]>=21.0",
"asyncssh>=2.14",
"tenacity>=8.2",
"async-timeout>=4.0",
"requests>=2.31",
"cryptography>=42.0",
]
[project.optional-dependencies]
monitoring = [
"psutil>=5.9",
]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-mock>=3.14",
"pytest-cov>=5.0",
"mypy>=1.8",
"ruff>=0.4",
"black>=24.0",
]
[project.scripts]
tla-bot = "src.main:main"
tla-bot-update = "src.updater:main"