diff options
author | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2020-12-07 16:25:09 -0500 |
---|---|---|
committer | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2020-12-07 16:25:09 -0500 |
commit | dbcc553b5d7fbb106ee89fdbed30ed2262365596 (patch) | |
tree | 8716c648fb49388b90081d9d2e68c03b84e7c347 | |
parent | b46b3c9366fdf27974e4394a4b9ee0dcbd357013 (diff) | |
download | b4-dbcc553b5d7fbb106ee89fdbed30ed2262365596.tar.gz |
Add dkimpy and dnspython to install_requires
DKIM verification is a very useful feature for b4, so let's make it a
requirement for anything installed from pip, since it's a simple enough
operation.
Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
-rw-r--r-- | setup.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -41,7 +41,9 @@ setup( data_files = [('share/man/man5', ['man/b4.5'])], keywords=['git', 'lore.kernel.org', 'patches'], install_requires=[ - 'requests' + 'requests~=2.24.0', + 'dkimpy~=1.0.5', + 'dnspython~=2.0.0', ], python_requires='>=3.6', entry_points={ |