-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
66 lines (58 loc) · 2.04 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
[tool.poetry]
name = "reverse-image-search"
version = "2.0.0a0"
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" }]
keywords = ["telegram", "reverse image search", "async", "python-telegram-bot"]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: AsyncIO",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Typing :: Typed",
]
homepage = "https://github.com/Nachtalb/reverse_image_search_bot"
[tool.poetry.dependencies]
python = "^3.11"
bot-manager = { git = "https://github.com/Nachtalb/bot_manager.git", rev = "master" }
aiohttp = { extras = ["speedups"], version = "^3.8.4" }
pillow = "^10.0.0"
imageio = { extras = ["ffmpeg"], version = "^2.27.0" }
tgtools = { git = "https://github.com/Nachtalb/tgtools", rev = "master" }
aiostream = "^0.4.5"
aiopixiv = { git = "https://github.com/Nachtalb/aiopixiv", rev = "master" }
[tool.poetry.group.dev.dependencies]
ipdb = ">=0.13.13"
ipython = { extras = ["black"], version = ">=8.11.0" }
pre-commit = ">=3.3.3"
ruff = ">=0.0.278"
mypy = ">=1.4.1"
isort = ">=5.12.0"
black = ">=23.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
line_length = 120
[tool.black]
line-length = 120
preview = true
target-version = ["py311"]
[tool.ruff]
line-length = 120
[tool.mypy]
python_version = "3.11"
show_error_codes = true
pretty = true
strict = true
[[tool.mypy.overrides]]
module = "aiostream.*"
ignore_missing_imports = "True"