]> git.phdru.name Git - ppu.git/commitdiff
Version 0.3.2: Convert README to reST 0.3.2
authorOleg Broytman <phd@phdru.name>
Sun, 30 Apr 2017 21:39:41 +0000 (00:39 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 30 Apr 2017 21:39:41 +0000 (00:39 +0300)
README.rst [new file with mode: 0644]
README.txt [deleted file]
docs/news.rst
setup.py

diff --git a/README.rst b/README.rst
new file mode 100644 (file)
index 0000000..de6ea10
--- /dev/null
@@ -0,0 +1,20 @@
+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
diff --git a/README.txt b/README.txt
deleted file mode 100644 (file)
index 9da6727..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-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
index 12852d9f80b03a65b909672fb3a562ed08db7f6f..00b2412c8fd240e3ecca22888905e94aa8955f28 100644 (file)
@@ -1,6 +1,11 @@
 News
 ====
 
+Version 0.3.2 (2017-05-01)
+--------------------------
+
+* Convert README to reST.
+
 Version 0.3.1 (2017-04-30)
 --------------------------
 
index 97e975e2a41d70ae3c3b012135b89504a115a5a9..30dd82dc956f5a4f95fc606f37a4fe978c3f7fe0 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -6,9 +6,9 @@ except ImportError:
     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/',