Package: polib / 1.0.0-2

01_remove_unicode_error_files Patch series | 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
Description: Remove files with unicode errors for python 3. 
Author: Angel Abad <angelabad@gmail.com>

--- polib-0.7.0.orig/setup.py
+++ polib-0.7.0/setup.py
@@ -17,20 +17,12 @@ author_data = __author__.split(' ')
 maintainer = ' '.join(author_data[0:-1])
 maintainer_email = author_data[-1]
 desc = 'A library to manipulate gettext files (po and mo files).'
-long_desc = '''
-.. contents:: Table of Contents
-
-%s
-
-%s
-
-''' % (open('README.rst').read(), open('CHANGELOG').read())
 
 if __name__ == '__main__':
     setup(
         name='polib',
         description=desc,
-        long_description=long_desc,
+#        long_description=long_desc,
         version=polib.__version__,
         author=maintainer,
         author_email=maintainer_email,