⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.118
Server IP:
93.127.201.240
Server:
Linux sg-nme-web1518.main-hosting.eu 5.14.0-611.16.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Dec 22 03:40:39 EST 2025 x86_64
Server Software:
LiteSpeed
PHP Version:
8.3.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
opt
/
gsutil
/
third_party
/
retry-decorator
/
View File Name :
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=[ ], )