aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Ryabitsev <konstantin@linuxfoundation.org>2020-12-07 16:25:09 -0500
committerKonstantin Ryabitsev <konstantin@linuxfoundation.org>2020-12-07 16:25:09 -0500
commitdbcc553b5d7fbb106ee89fdbed30ed2262365596 (patch)
tree8716c648fb49388b90081d9d2e68c03b84e7c347
parentb46b3c9366fdf27974e4394a4b9ee0dcbd357013 (diff)
downloadb4-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.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 867b5cf..358e6a7 100644
--- a/setup.py
+++ b/setup.py
@@ -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={