-
Notifications
You must be signed in to change notification settings - Fork 103
/
pyproject.toml
52 lines (47 loc) · 1.33 KB
/
pyproject.toml
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==75.3.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "aiogram_dialog"
version = "2.2.0b3"
readme = "README.md"
authors = [
{ name = "Andrey Tikhonov", email = "[email protected]" },
]
license = { text = "Apache-2.0" }
description = "Telegram bot UI framework on top of aiogram"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"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.coverage.run]
branch = true
relative_files = true
include = ["src/**"]