don't install scripts in /usr/bin in development mode
This commit is contained in:
parent
1f6564c500
commit
b9454d89b0
2 changed files with 3 additions and 1 deletions
3
INSTALL
3
INSTALL
|
|
@ -33,6 +33,9 @@ It is useful for development when files often change.
|
||||||
# ./setup.py develop
|
# ./setup.py develop
|
||||||
Creates /usr/lib/python2.5/site-packages/weboob_dev.egg-link
|
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
|
To uninstall, remove this egg-link and remove the weboob_dev line in
|
||||||
/usr/lib/python2.5/site-packages/easy-install.pth
|
/usr/lib/python2.5/site-packages/easy-install.pth
|
||||||
|
|
||||||
|
|
|
||||||
1
setup.py
1
setup.py
|
|
@ -31,7 +31,6 @@ setup(
|
||||||
license='GPLv3',
|
license='GPLv3',
|
||||||
url='http://www.weboob.org',
|
url='http://www.weboob.org',
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
scripts=[os.path.join('scripts', script) for script in os.listdir('scripts')],
|
|
||||||
install_requires=[
|
install_requires=[
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue