fune/third_party/python/redo/setup.py
Tom Prince 02dfab8cb7 Bug 1527858: Vendor redo==2.0.3; r=aki
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
2019-03-09 00:05:49 +00:00

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",
)