-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (35 loc) · 997 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "wkpnbot"
dynamic = ["version"]
description = "Source code for https://t.me/wkpnbot"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Egor Dediulin", email = "[email protected]" }
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Communications :: Chat"
]
dependencies = [
"aiogram[fast]==3.12.0",
"cachetools==5.4.0",
"orjson==3.10.7",
"tomlkit==0.13.2; python_version < '3.11'"
]
[project.scripts]
wkpnbot = "wkpnbot.webserver:main"
[project.urls]
Homepage = "https://t.me/wkpnbot"
Repository = "https://github.com/wkpn/wkpnbot"
[tool.hatch.version]
path = "wkpnbot/__init__.py"