File: setup.py

package info (click to toggle)
justbackoff 0.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 108 kB
  • sloc: python: 117; makefile: 40; sh: 5
file content (34 lines) | stat: -rw-r--r-- 956 bytes parent folder | download
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",
    ],
)