-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (59 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
68 lines (59 loc) · 1.72 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
[build-system]
requires = [
"setuptools==80.9.0",
"setuptools-scm[simple]==9.2.0",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "aiogram_dialog"
dynamic = ["version"]
readme = "README.md"
authors = [
{ name = "Andrey Tikhonov", email = "17@itishka.org" },
]
license = "Apache-2.0"
license-files = ["LICENSE"]
description = "Telegram bot UI framework on top of aiogram"
requires-python = ">=3.10"
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",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
]
dependencies = [
"aiogram>=3.14.0",
"jinja2",
"cachetools>=4.0.0,<6.0.0",
]
[project.optional-dependencies]
tools = [
"diagrams",
"aiohttp",
]
[project.urls]
"Homepage" = "https://github.com/tishka17/aiogram_dialog"
"Documentation" = "https://aiogram-dialog.readthedocs.org"
"Bug Tracker" = "https://github.com/tishka17/aiogram_dialog/issues"
[project.scripts]
aiogram-dialog-preview = "aiogram_dialog.tools.web_preview:main"
[tool.setuptools_scm]
version_file = "src/aiogram_dialog/_version.py"
version_file_template = """\
# This file auto generated!
# DO NOT EDIT MANUALLY!
version: str = "{version}"
__version__: str = "{version}"
commit_hash: str = "{scm_version.node}"
version_timestamp: str = "{scm_version.time}"
tag: str = "{scm_version.tag}"
branch: str = "{scm_version.branch}"
commit_date: str = "{scm_version.node_date}"
commit_count_since_tag: int = {scm_version.distance}
"""