Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Use "setup.py install" to install Python packages
Browse files Browse the repository at this point in the history
  • Loading branch information
jdemeyer committed Apr 16, 2016
1 parent 161ac3b commit b5fb38b
Show file tree
Hide file tree
Showing 15 changed files with 17 additions and 15 deletions.
2 changes: 1 addition & 1 deletion build/pkgs/babel/spkg-install
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash

cd src && pip install .
cd src && python setup.py install
2 changes: 1 addition & 1 deletion build/pkgs/flask/spkg-install
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash

cd src && pip install .
cd src && python setup.py install
2 changes: 1 addition & 1 deletion build/pkgs/flask_autoindex/spkg-install
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash

cd Flask* && pip install .
cd Flask* && python setup.py install
2 changes: 1 addition & 1 deletion build/pkgs/flask_babel/spkg-install
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash

cd Flask* && pip install .
cd Flask* && python setup.py install
2 changes: 1 addition & 1 deletion build/pkgs/flask_oldsessions/spkg-install
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash

cd *flask-oldsessions* && pip install .
cd *flask-oldsessions* && python setup.py install
2 changes: 1 addition & 1 deletion build/pkgs/flask_openid/spkg-install
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash

cd Flask* && pip install .
cd Flask* && python setup.py install
2 changes: 1 addition & 1 deletion build/pkgs/flask_silk/spkg-install
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash

cd Flask* && pip install .
cd Flask* && python setup.py install
2 changes: 1 addition & 1 deletion build/pkgs/itsdangerous/spkg-install
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash

cd src && pip install .
cd src && python setup.py install
2 changes: 1 addition & 1 deletion build/pkgs/python_openid/spkg-install
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash

cd python-openid-* && pip install .
cd python-openid-* && python setup.py install
2 changes: 1 addition & 1 deletion build/pkgs/pytz/spkg-install
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash

cd src && pip install .
cd src && python setup.py install
4 changes: 3 additions & 1 deletion build/pkgs/sagenb/spkg-install
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ fi

cd src

pip install .
# Install a flat package (not an egg), which is the same as how pip
# installs packages.
python setup.py install --single-version-externally-managed --record dummy
if [ $? -ne 0 ]; then
echo >&2 "Error installing SageNB"
exit 1
Expand Down
2 changes: 1 addition & 1 deletion build/pkgs/speaklater/spkg-install
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash

cd src && pip install .
cd src && python setup.py install
2 changes: 1 addition & 1 deletion build/pkgs/twisted/spkg-install
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash

cd src && pip install .
cd src && python setup.py install
2 changes: 1 addition & 1 deletion build/pkgs/werkzeug/spkg-install
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash

cd src && pip install .
cd src && python setup.py install
2 changes: 1 addition & 1 deletion build/pkgs/zope_interface/spkg-install
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash

cd src && pip install .
cd src && python setup.py install

0 comments on commit b5fb38b

Please sign in to comment.