From: Oleg Broytman Date: Sun, 30 Apr 2017 18:10:43 +0000 (+0300) Subject: Move cmp.py, remove-old-files.py and rm.py to scripts directory X-Git-Tag: 0.3.0~2 X-Git-Url: https://git.phdru.name/?p=ppu.git;a=commitdiff_plain;h=f8dcc3f8ab3d1487c0e9042e26e437db77c4e311 Move cmp.py, remove-old-files.py and rm.py to scripts directory --- 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', + ], )