This repository has been archived by the owner on Jul 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
78 lines (72 loc) · 2.18 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[tool.poetry]
name = "autogram-botkit"
packages = [
{ include = "botkit" }
]
version = "0.2.3"
description = "Opinionated, library-agnostic Python framework for rapid development of Telegram (user)bots with focus on maintainability for large projects."
license = "GPL-3.0-or-later"
authors = ["JosXa <[email protected]>"]
readme = "README.md"
repository = "https://github.com/autogram/Botkit"
keywords = ["telegram-bots", "telegram-userbots", "python3", "framework"]
classifiers = [
"Development Status :: 3 - Alpha",
"Typing :: Typed",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Robot Framework :: Library",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython"
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/autogram/Botkit/issues"
"Support Chat" = "https://t.me/BotkitChat"
"News & Updates" = "https://t.me/AUTOBotkit"
"Contact Author" = "https:/t.me/JosXa"
[tool.poetry.dependencies]
python = "^3.8"
tgtypes = "*"
cached_property = "^1.5.1"
python-decouple = "3.3"
more-itertools = "^8.2.0"
unsync = "^1.2.1"
haps = "^1.1.2"
typing-inspect = ">=0.5.0"
pydantic = { extras = ["dotenv"], version = "^1.6.1" }
ordered_set = "^3.1.1"
decorators = "^0.1.1"
pyhumps = "^1.3.1"
boltons = "*"
pytz = "2020.1"
redis-collections = { version = "^0.8.1", optional = true }
watchgod = { version = "^0.6", optional = true }
ensure = "^1.0.0"
loguru = "^0.5.3"
paraminjector = "^0.1.0"
buslane = "^0.0.5"
[tool.poetry.extras]
redis = ["redis-collections"]
hmr = ["watchgod"]
[tool.poetry.dev-dependencies]
black = { version = ">=20.8b1", python = "^3.8", markers = "platform_python_implementation == 'CPython'" }
mypy = ">0.770"
birdseye = "^0.8.3"
mkinit = "^0.2.0"
typer = "^0.3.1"
pytest = "*"
pytest-asyncio = "*"
pytest-cov = "^2.10.1"
pre-commit = "^2.7.1"
devtools = { extras = ["pygments"], version = "^0.6" }
pyrogram = "1.*"
telethon = "1.*"
loguru-mypy = "^0.0.2"
docker = "^4.3.1"
[tool.black]
line-length = 99
target-version = ['py38']
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"