From b9454d89b0b853aa23b07131093e753b282c6dc6 Mon Sep 17 00:00:00 2001 From: Christophe Benz Date: Wed, 7 Jul 2010 17:18:17 +0200 Subject: [PATCH] don't install scripts in /usr/bin in development mode --- INSTALL | 3 +++ setup.py | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/INSTALL b/INSTALL index d331d9ef1c..104cab0e39 100644 --- a/INSTALL +++ b/INSTALL @@ -33,6 +33,9 @@ It is useful for development when files often change. # ./setup.py develop Creates /usr/lib/python2.5/site-packages/weboob_dev.egg-link +Scripts are not copied to /usr/bin, so you must launch them with: +$ ./scripts/videoob (for example) + To uninstall, remove this egg-link and remove the weboob_dev line in /usr/lib/python2.5/site-packages/easy-install.pth diff --git a/setup.py b/setup.py index 1b57a09210..3f7e4bcec4 100755 --- a/setup.py +++ b/setup.py @@ -31,7 +31,6 @@ license='GPLv3', url='http://www.weboob.org', packages=find_packages(), - scripts=[os.path.join('scripts', script) for script in os.listdir('scripts')], install_requires=[ ], ) -- GitLab