-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (65 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
74 lines (65 loc) · 1.69 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
70
71
72
73
74
[project]
name = "aiogram-webhook"
version = "2.0.1"
description = "A python library for integrating webhook support with multiple web frameworks in aiogram. Organizes bot operation via webhooks for both single and multi-bot setups."
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "m-xim", email = "i@m-xim.ru" }]
requires-python = ">=3.10"
dependencies = [
"aiogram>=3.14.0",
"yarl>=1.17.0",
]
keywords = [
"aiogram",
"telegram",
"webhook",
"fastapi",
"aiohttp",
"multibot",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/m-xim/aiogram-webhook"
Repository = "https://github.com/m-xim/aiogram-webhook"
Issues = "https://github.com/m-xim/aiogram-webhook/issues"
Documentation = "https://github.com/m-xim/aiogram-webhook#readme"
[project.optional-dependencies]
fastapi = [
"fastapi>=0.128.0",
]
aiohttp = [
"aiohttp>=3.9.0",
]
dev = [
"ruff",
"ty",
"pytest",
"pytest-asyncio",
"httpx"
]
[build-system]
requires = ["uv_build"]
build-backend = "uv_build"
[tool.uv]
package = true
[tool.semantic_release]
version_source = "pyproject"
commit_message = "chore(release): {version}"
version_toml = [
"pyproject.toml:project.version",
]
[tool.semantic_release.branches.main]
match = "main"
[tool.semantic_release.branches.develop]
match = "develop"
prerelease = true