File tree 2 files changed +17
-4
lines changed
2 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 49
49
## [ v1.2.1] - 2016-05-27
50
50
### Changed
51
51
- 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 22
22
'Topic :: Utilities' ]
23
23
24
24
25
+ def readme ():
26
+ with open ("README.rst" , "r" ) as infile :
27
+ return infile .read ()
28
+
29
+
25
30
core .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 (),
27
34
py_modules = ['backoff' ],
28
35
author = "Bob Green" ,
29
36
30
- description = "Function decoration for backoff and retry" ,
31
37
keywords = "backoff function decorator" ,
32
38
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 " ,
34
40
license = "MIT" ,
35
- long_description = backoff .__doc__ ,
36
41
classifiers = classifiers )
You can’t perform that action at this time.
0 commit comments