0
0
mirror of https://github.com/ihabunek/toot.git synced 2025-10-21 19:44:16 -04:00

Display images

This commit is contained in:
Daniel Schwarz
2024-04-13 08:14:36 +02:00
committed by Ivan Habunek
parent 07ad41960f
commit 0fc2ec12f5
10 changed files with 498 additions and 21 deletions

View File

@@ -39,9 +39,14 @@ setup(
"beautifulsoup4>=4.5.0,<5.0",
"wcwidth>=0.1.7",
"urwid>=2.0.0,<3.0",
"tomlkit>=0.10.0,<1.0"
"tomlkit>=0.10.0,<1.0",
],
extras_require={
# Required to display images in the TUI
"images": [
"pillow>=9.5.0",
"term-image==0.7.0",
],
# Required to display rich text in the TUI
"richtext": [
"urwidgets>=0.1,<0.2"
@@ -60,6 +65,7 @@ setup(
"setuptools",
"vermin",
"typing-extensions",
"pillow>=9.5.0",
],
},
entry_points={