--- /dev/null
+Portable Python Utilities.
+
+Author: Oleg Broytman <phd@phdru.name>.
+
+Copyright (C) 2017 PhiloSoft Design.
+
+License: GPL.
+
+cmp.py - compare two files.
+
+remove-old-files.py - remove old files. It's a portable replacement for
+`find start_dir -type f -mtime +31 -delete`.
+
+rm.py - remove files.
+
+| Home Page: http://phdru.name/Software/Python/ppu/
+| Documentation: http://phdru.name/Software/Python/ppu/docs/
+| Git repo: http://git.phdru.name/ppu.git/
+| GitHub repo: https://github.com/phdru/ppu
+| Issue tracker: https://github.com/phdru/ppu/issues
+++ /dev/null
-Broytman Portable Python Utilities, Copyright (C) 2017 PhiloSoft Design
-Author: Oleg Broytman <phd@phdru.name>
-License: GPL
-
-cmp.py - compare two files.
-
-remove-old-files.py - remove old files. It's a portable replacement for
-`find start_dir -type f -mtime +31 -delete`.
-
-rm.py - remove files.
-
-Home Page: http://phdru.name/Software/Python/ppu/
-Documentation: http://phdru.name/Software/Python/ppu/docs/
-Git repo: http://git.phdru.name/ppu.git/
-GitHub repo: https://github.com/phdru/ppu
-Issue tracker: https://github.com/phdru/ppu/issues
News
====
+Version 0.3.2 (2017-05-01)
+--------------------------
+
+* Convert README to reST.
+
Version 0.3.1 (2017-04-30)
--------------------------
from distutils.core import setup
setup(name='ppu',
- version='0.3.1',
+ version='0.3.2',
description='Broytman Portable Python Utilities',
- long_description=open('README.txt', 'rU').read(),
+ long_description=open('README.rst', 'rU').read(),
author='Oleg Broytman',
author_email='phd@phdru.name',
url='http://phdru.name/Software/Python/ppu/',