Use pip for make install, it allow us to easily uninstall
do not install any dependancy, as setup.py install would do
This commit is contained in:
parent
abda112467
commit
63621bd26e
1 changed files with 6 additions and 2 deletions
8
Makefile
8
Makefile
|
@ -4,8 +4,12 @@ VERSION=`python setup.py -V`
|
|||
build:
|
||||
python setup.py build
|
||||
|
||||
install:
|
||||
python setup.py install
|
||||
install: dist
|
||||
pip -V
|
||||
pip install --no-deps --upgrade --force-reinstall --find-links ./dist/django-cas-server-${VERSION}.tar.gz django-cas-server
|
||||
|
||||
uninstall:
|
||||
pip uninstall django-cas-server || true
|
||||
|
||||
clean_pyc:
|
||||
find ./ -name '*.pyc' -delete
|
||||
|
|
Loading…
Reference in a new issue