Description: Remove files with unicode errors for python 3. Author: Angel Abad --- 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,