Codebase list backoff / c01a24e9-67dc-4ffc-b10f-843d31761f12/upstream pyproject.toml
c01a24e9-67dc-4ffc-b10f-843d31761f12/upstream

Tree @c01a24e9-67dc-4ffc-b10f-843d31761f12/upstream (Download .tar.gz)

pyproject.toml @c01a24e9-67dc-4ffc-b10f-843d31761f12/upstreamraw · history · blame

[tool.poetry]
name = "backoff"
version = "1.11.1"
description = "Function decoration for backoff and retry"
authors = ["Bob Green <[email protected]>"]
readme = "README.rst"
repository = "https://github.com/litl/backoff"
license = "MIT"
keywords = ["retry", "backoff", "decorators"]
classifiers = ['Development Status :: 5 - Production/Stable',
               'Intended Audience :: Developers',
               'Programming Language :: Python',
               'License :: OSI Approved :: MIT License',
               'Natural Language :: English',
               'Operating System :: OS Independent',
               'Programming Language :: Python',
               'Programming Language :: Python :: 2',
               'Programming Language :: Python :: 2.7',
               'Programming Language :: Python :: 3',
               'Programming Language :: Python :: 3.5',
               'Programming Language :: Python :: 3.6',
               'Programming Language :: Python :: 3.7',
               'Programming Language :: Python :: 3.8',
               'Programming Language :: Python :: 3.9',
                'Topic :: Internet :: WWW/HTTP',
               'Topic :: Software Development :: Libraries :: Python Modules',
               'Topic :: Utilities']
packages = [
    { include = "backoff" },
]

[tool.poetry.dependencies]
python = "^2.7 || ^3.5"

[tool.poetry.dev-dependencies]
flake8 = "^3.6"
pytest = "^4.0"
pytest-cov = "^2.6"
pytest-asyncio = {version = "^0.10.0",python = "^3.5"}
autopep8 = "^1.5.7"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"