6.2.1 - Add missing tqdm dependency to setup.py

This commit is contained in:
Sean Whalen
2019-02-25 11:00:48 -05:00
parent 5ad5107aec
commit bd2b08027f
4 changed files with 10 additions and 4 deletions
+3 -2
View File
@@ -14,7 +14,7 @@ from setuptools import setup
from codecs import open
from os import path
__version__ = "6.2.0"
__version__ = "6.2.1"
description = "A Python package and CLI for parsing aggregate and " \
"forensic DMARC reports"
@@ -97,7 +97,8 @@ setup(
'urllib3>=1.21.1', 'requests>=2.2.16.0',
'imapclient>=2.1.0', 'mail-parser>=3.9.2',
'dateparser>=0.7.1', 'elasticsearch>=6.3.1',
'elasticsearch-dsl>=0.0.12', 'kafka-python>=1.4.4'
'elasticsearch-dsl>=0.0.12', 'kafka-python>=1.4.4',
'tqdm>=4.31.1'
],
entry_points={