File tree 3 files changed +10
-4
lines changed 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -104,4 +104,4 @@ Most of the flags mirror the arguments you would use with `requests.request`. Se
104
104
105
105
### Changelog
106
106
107
- * [ 0.1.5 ] ( https://github.com/jkbr/httpie/compare/0.1.4...0.1.5 ) (2012-03-04)
107
+ * [ 0.1.6 ] ( https://github.com/jkbr/httpie/compare/0.1.4...0.1.6 ) (2012-03-04)
Original file line number Diff line number Diff line change 3
3
4
4
"""
5
5
__author__ = 'Jakub Roztocil'
6
- __version__ = '0.1.5 '
6
+ __version__ = '0.1.6 '
7
7
__licence__ = 'BSD'
Original file line number Diff line number Diff line change 14
14
requirements .append ('argparse>=1.2.1' )
15
15
16
16
17
+ try :
18
+ long_description = open ('README.md' ).read ()
19
+ except IOError :
20
+ long_description = ''
21
+
22
+
17
23
setup (
18
24
name = 'httpie' ,version = httpie .__version__ ,
19
25
description = httpie .__doc__ .strip (),
20
- long_description = open ( 'README.md' ). read () ,
26
+ long_description = long_description ,
21
27
url = 'http://httpie.org/' ,
22
28
download_url = 'https://github.com/jkbr/httpie' ,
23
29
author = httpie .__author__ ,
48
54
'Topic :: System :: Networking' ,
49
55
'Topic :: Terminals' ,
50
56
'Topic :: Text Processing' ,
51
- ]
57
+ ],
52
58
)
You can’t perform that action at this time.
0 commit comments