зеркало из https://github.com/mozilla/gecko-dev.git
19 строки
406 B
Python
19 строки
406 B
Python
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
|
|
setup(
|
|
name="redo",
|
|
version="1.6",
|
|
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",
|
|
)
|