OXIESEC PANEL
- Current Dir:
/
/
opt
/
gsutil
/
third_party
/
retry-decorator
Server IP: 2a02:4780:11:1594:0:ef5:22d7:a
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
12/09/2024 05:26:03 PM
rwxr-xr-x
📄
.gitignore
317 bytes
11/22/2013 05:35:36 AM
rw-r--r--
📄
CHANGES.txt
913 bytes
11/22/2013 05:35:36 AM
rw-r--r--
📄
LICENSE.txt
1.02 KB
11/22/2013 05:35:36 AM
rw-r--r--
📄
MANIFEST.in
53 bytes
11/22/2013 05:35:36 AM
rw-r--r--
📄
Makefile
240 bytes
11/22/2013 05:35:36 AM
rw-r--r--
📄
README.rst
466 bytes
11/22/2013 05:35:36 AM
rw-r--r--
📁
retry_decorator
-
02/11/2025 08:19:49 AM
rwxr-xr-x
📄
setup.py
589 bytes
11/22/2013 05:35:36 AM
rw-r--r--
Editing: setup.py
Close
#!/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=[ ], )