From 89e905cd8b271b394b63483d70672e5a7cda0098 Mon Sep 17 00:00:00 2001 From: Daniel Schwarz Date: Thu, 28 Sep 2023 14:22:59 -0400 Subject: [PATCH] added urwidgets as an optional depenency for 'hyperlinks' extra --- requirements.txt | 2 +- setup.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 3616ac3..54b69dd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,4 +2,4 @@ requests>=2.13,<3.0 beautifulsoup4>=4.5.0,<5.0 wcwidth>=0.1.7 urwid>=2.0.0,<3.0 - +urwidgets=>=0.1,<0.2 diff --git a/setup.py b/setup.py index d893764..0739408 100644 --- a/setup.py +++ b/setup.py @@ -40,6 +40,9 @@ setup( "urwid>=2.0.0,<3.0", "tomlkit>=0.10.0,<1.0" ], + extras_require={ + "hyperlinks": ['urwidgets>=0.1,<0.2'], + }, entry_points={ 'console_scripts': [ 'toot=toot.console:main',