-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
pyproject.toml
92 lines (78 loc) · 1.93 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#
# Packaging
#
[tool.poetry]
name = "pyrobud"
version = "2.1.0"
description = "A clean selfbot for Telegram with an emphasis on quality and practicality."
authors = ["Danny Lin <danny@kdrag0n.dev>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/kdrag0n/pyrobud"
documentation = "https://github.com/kdrag0n/pyrobud/blob/master/README.md"
# Search info
keywords = ["chat", "telegram", "selfbot", "telegram-bot", "telethon"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: No Input/Output (Daemon)",
"Framework :: AsyncIO",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: Communications",
"Topic :: Communications :: Chat"
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/kdrag0n/pyrobud/issues"
"Community" = "https://t.me/pyrobud"
[tool.poetry.dependencies]
python = "^3.6"
# Core
aiohttp = "^3.6.2"
colorlog = ">=4.1,<6.0"
telethon = "^1.10.10"
tomlkit = ">=0.5.8,<0.12.0"
# Performance
cryptg = {version = "^0.2.post0", optional = true}
# Database
msgpack = ">=0.6.2,<1.1.0"
plyvel = "^1.1.0"
# Error handling
gitpython = "^3.0.5"
ratelimit = "^2.2.1"
sentry-sdk = ">=0.13.5,<1.10.0"
# Stickers module
pillow = ">=6.2.2,<9.0.0"
# System module
speedtest-cli = "^2.1.2"
# Debug module
meval = "^2.5"
aiorun = ">=2019.11.1,<2022.0.0"
beauty-print = "^0.6.0"
emoji = ">=0.5.4,<1.8.0"
regex = "^2021.8.28"
[tool.poetry.extras]
fast = ["cryptg"]
[tool.poetry.dev-dependencies]
black = "^20.8b1"
isort = {version = "^5.8.0", extras = ["pyproject"]}
mypy = "^0.812"
pre-commit = "^2.1.1"
[tool.poetry.scripts]
pyrobud = "pyrobud.main:main"
#
# Code formatting
#
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
#
# Build system (for pip)
#
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"