Bug 1118774 - Import python redo library; r=gps

This commit is contained in:
Mike Shal
2015-01-07 14:18:20 -05:00
parent 413f14eccf
commit bc11b40e5d
12 changed files with 329 additions and 0 deletions

14
python/redo/setup.py Normal file
View File

@@ -0,0 +1,14 @@
from setuptools import setup
setup(
name="redo",
version="1.4",
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",
)