-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (44 loc) · 1.08 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.backends._legacy:_Backend"
[project]
name = "reframe-bot"
version = "2.0.0"
description = "Enterprise-grade Telegram bot for resizing, compressing, and converting photos & videos"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.12"
authors = [
{name = "Hoot-Code"},
]
dependencies = [
"python-telegram-bot==21.5",
"Pillow>=10.3.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
postgres = ["psycopg2-binary>=2.9.0"]
redis = ["redis>=5.0.0"]
metrics = ["prometheus-client>=0.20.0"]
tracing = [
"opentelemetry-api>=1.20.0",
"opentelemetry-sdk>=1.20.0",
"opentelemetry-exporter-otlp>=1.20.0",
]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.23.0",
"locust>=2.20.0",
]
all = [
"reframe-bot[postgres,redis,metrics,tracing,dev]",
]
[project.scripts]
reframe = "main:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
asyncio_mode = "auto"