mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
18 lines
406 B
Python
18 lines
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",
|
|
)
|