diff options
Diffstat (limited to 'third_party/python/redo/setup.py')
-rw-r--r-- | third_party/python/redo/setup.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/third_party/python/redo/setup.py b/third_party/python/redo/setup.py new file mode 100644 index 0000000000..255f80ea52 --- /dev/null +++ b/third_party/python/redo/setup.py @@ -0,0 +1,16 @@ +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", +) |