This repository was archived by the owner on Aug 8, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 4949## [ v1.2.1] - 2016-05-27
5050### Changed
5151- Documentation fixes
52+
53+ ## [ v1.3.0] - 2016-08-08
54+ ### Added
55+ - Support runtime configuration with optional callable kwargs
56+ - Add giveup kwarg for exception inspection
57+
58+ ### Changed
59+ - Documentation fixes
Original file line number Diff line number Diff line change 2222 'Topic :: Utilities' ]
2323
2424
25+ def readme ():
26+ with open ("README.rst" , "r" ) as infile :
27+ return infile .read ()
28+
29+
2530core .setup (name = 'backoff' ,
26- version = '1.2.1' ,
31+ version = '1.3.0' ,
32+ description = "Function decoration for backoff and retry" ,
33+ long_description = readme (),
2734 py_modules = ['backoff' ],
2835 author = "Bob Green" ,
2936 author_email = "bgreen@litl.com" ,
30- description = "Function decoration for backoff and retry" ,
3137 keywords = "backoff function decorator" ,
3238 url = "https://github.com/litl/backoff" ,
33- download_url = "https://github.com/litl/backoff/tarball/v1.2.1 " ,
39+ download_url = "https://github.com/litl/backoff/tarball/v1.3.0 " ,
3440 license = "MIT" ,
35- long_description = backoff .__doc__ ,
3641 classifiers = classifiers )
You can’t perform that action at this time.
0 commit comments