-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (30 loc) · 1.16 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
[tool.poetry]
name = "reverse-image-search"
version = "2.0.0"
description = "A Telegram bot that provides direct reverse image search links for various engines like Google, Yandex, SauceNAO, IQDB, and more. Send an image, sticker or video/gif, and get search results from multiple platforms. Supports auto search and offers various tips for better search results."
authors = ["Nachtalb <[email protected]>"]
license = "LGPL-3.0"
readme = "README.md"
packages = [{include = "reverse_image_search"}]
[tool.poetry.dependencies]
python = "^3.11, <3.12.0"
bot-manager = {git = "https://github.com/Nachtalb/bot_manager.git", rev = "master"}
aiohttp = {extras = ["speedups"], version = "^3.8.4"}
pillow = "^9.4.0"
imageio = {extras = ["ffmpeg"], version = "^2.27.0"}
tgtools = {git = "https://github.com/Nachtalb/tgtools", rev = "master"}
aiostream = "^0.4.5"
[tool.poetry.group.dev.dependencies]
ipdb = "^0.13.13"
ipython = {extras = ["black"], version = "^8.11.0"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ['py311']
preview = true
[tool.ruff]
line-length = 120
[tool.mypy]
ignore_missing_imports = true