forked from mirrors/gecko-dev
There was an error in logging multiple tries. This updates redo to a version with fixed logging. Differential Revision: https://phabricator.services.mozilla.com/D22806 --HG-- extra : moz-landing-system : lando
16 lines
393 B
Python
16 lines
393 B
Python
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
|
|
setup(
|
|
name="redo",
|
|
version="2.0.3",
|
|
description="Utilities to retry Python callables.",
|
|
author="Ben Hearsum",
|
|
author_email="ben@hearsum.ca",
|
|
packages=["redo"],
|
|
entry_points={"console_scripts": ["retry = redo.cmd:main"]},
|
|
url="https://github.com/bhearsum/redo",
|
|
)
|