From 50f80825db42438a5f6d2de7a0d0a0f6a343bfa4 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Mon, 1 May 2017 00:39:41 +0300 Subject: [PATCH] Version 0.3.2: Convert README to reST --- README.rst | 20 ++++++++++++++++++++ README.txt | 16 ---------------- docs/news.rst | 5 +++++ setup.py | 4 ++-- 4 files changed, 27 insertions(+), 18 deletions(-) create mode 100644 README.rst delete mode 100644 README.txt diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..de6ea10 --- /dev/null +++ b/README.rst @@ -0,0 +1,20 @@ +Portable Python Utilities. + +Author: Oleg Broytman . + +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 index 9da6727..0000000 --- a/README.txt +++ /dev/null @@ -1,16 +0,0 @@ -Broytman Portable Python Utilities, Copyright (C) 2017 PhiloSoft Design -Author: Oleg Broytman -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/docs/news.rst b/docs/news.rst index 12852d9..00b2412 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -1,6 +1,11 @@ News ==== +Version 0.3.2 (2017-05-01) +-------------------------- + +* Convert README to reST. + Version 0.3.1 (2017-04-30) -------------------------- diff --git a/setup.py b/setup.py index 97e975e..30dd82d 100755 --- 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/', -- 2.39.2