diff --git a/INSTALL b/INSTALL index d331d9ef1c5514c34cf38af7768aa7e5194e77d5..104cab0e39f73dbad1647bec67dc5d172e62a8c3 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 1b57a0921019c0ebee030acb52480779629aca2d..3f7e4bcec4af791e5caad1d66ef2180666e6af75 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=[ ], )