HEX
Server: LiteSpeed
System: Linux br-asc-web1845.main-hosting.eu 5.14.0-611.42.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 24 05:30:20 EDT 2026 x86_64
User: u790421558 (790421558)
PHP: 8.2.30
Disabled: system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail
Upload Files
File: //opt/gsutil/third_party/retry-decorator/setup.py
#!/usr/bin/env python

from os.path import exists
from setuptools import setup, find_packages

from retry_decorator import __version__

setup( 
        name='retry_decorator',
        version=__version__,
        author='Patrick Ng',
        author_email='pn.appdev@gmail.com',
        scripts=[],
        url='https://github.com/pnpnpn/retry-decorator',
        license='MIT',
        packages=find_packages(),
        description='Retry Decorator',
        long_description=open('README.rst').read() if exists("README.rst") else "",
        install_requires=[
        
            ],
)