1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
"""
justbackoff
----------------
Simple backoff algorithm in Python
"""
from setuptools import setup
setup(
name="justbackoff",
version="0.6.0",
url="https://github.com/admiralobvious/justbackoff",
license="MIT",
author="Alexandre Ferland",
author_email="aferlandqc@gmail.com",
description="Simple backoff algorithm in Python",
long_description=__doc__,
packages=["justbackoff"],
zip_safe=False,
include_package_data=True,
setup_requires=["pytest-runner>=5.2"],
tests_require=["pytest>=5.4.1"],
platforms="any",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
|