From a250a87df41ab3ed828b1800939f8533453fb31f Mon Sep 17 00:00:00 2001 From: sneakypete81 Date: Sat, 6 Jul 2013 11:02:39 +0100 Subject: [PATCH] Move openphoto script to bin directory (as recommended in http://guide.python-distribute.org/) --- {scripts => bin}/openphoto | 0 setup.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename {scripts => bin}/openphoto (100%) mode change 100644 => 100755 diff --git a/scripts/openphoto b/bin/openphoto old mode 100644 new mode 100755 similarity index 100% rename from scripts/openphoto rename to bin/openphoto diff --git a/setup.py b/setup.py index 74ecf8a..5d2c08a 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ try: } except ImportError: from distutils.core import setup - kw = {'scripts': ['scripts/openphoto'], + kw = {'scripts': ['bin/openphoto'], 'requires': requires} setup(name='openphoto',