From f8dcc3f8ab3d1487c0e9042e26e437db77c4e311 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sun, 30 Apr 2017 21:10:43 +0300 Subject: [PATCH] Move cmp.py, remove-old-files.py and rm.py to scripts directory --- docs/news.rst | 5 +++++ cmp.py => scripts/cmp.py | 0 remove-old-files.py => scripts/remove-old-files.py | 0 rm.py => scripts/rm.py | 0 setup.py | 4 +++- 5 files changed, 8 insertions(+), 1 deletion(-) rename cmp.py => scripts/cmp.py (100%) rename remove-old-files.py => scripts/remove-old-files.py (100%) rename rm.py => scripts/rm.py (100%) diff --git a/docs/news.rst b/docs/news.rst index d45ac2c..242f36e 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -1,6 +1,11 @@ News ==== +Version 0.3.0 (2017-05-??) +-------------------------- + +* Move cmp.py, remove-old-files.py and rm.py to scripts directory. + Version 0.2.0 (2017-04-30) -------------------------- diff --git a/cmp.py b/scripts/cmp.py similarity index 100% rename from cmp.py rename to scripts/cmp.py diff --git a/remove-old-files.py b/scripts/remove-old-files.py similarity index 100% rename from remove-old-files.py rename to scripts/remove-old-files.py diff --git a/rm.py b/scripts/rm.py similarity index 100% rename from rm.py rename to scripts/rm.py diff --git a/setup.py b/setup.py index 6f67d78..8b323a0 100755 --- a/setup.py +++ b/setup.py @@ -31,5 +31,7 @@ setup(name='ppu', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', ], - scripts=['cmp.py', 'remove-old-files.py', 'rm.py'], + scripts=[ + 'scripts/cmp.py', 'scripts/remove-old-files.py', 'scripts/rm.py', + ], ) -- 2.39.2