Skip to content

Commit

Permalink
rain-move with servers and renamed package as futuregrid_move
Browse files Browse the repository at this point in the history
  • Loading branch information
javidiaz committed May 30, 2012
1 parent 427471b commit 2275b6a
Show file tree
Hide file tree
Showing 37 changed files with 2,020 additions and 365 deletions.
Binary file removed .DS_Store
Binary file not shown.
40 changes: 26 additions & 14 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
egg:
python setup.py bdist_egg

tar:
python setup.py sdist

upload:
python setup.py bdist_egg upload
python setup.py sdist upload

register:
python setup.py register

######################################################################
# GIT INTERFACES
######################################################################
Expand Down Expand Up @@ -38,15 +51,6 @@ test:
fg-cluster
fg-local

######################################################################
# PYPI
######################################################################

upload:
make -f Makefile pip
# python setup.py register
python setup.py sdist upload

######################################################################
# QC
######################################################################
Expand All @@ -57,9 +61,9 @@ qc-install:
sudo pip install pyflakes

qc:
pep8 ./futuregrid/virtual/cluster/
pylint ./futuregrid/virtual/cluster/ | less
pyflakes ./futuregrid/virtual/cluster/
pep8 ./src/futuregrid/rain/move/
pylint ./src/futuregrid/rain/move/ | less
pyflakes ./src/futuregrid/rain/move/

# #####################################################################
# CLEAN
Expand All @@ -71,6 +75,10 @@ clean:
find . -name "*.pyc" -exec rm {} \;
rm -rf build dist *.egg-info *~ #*
cd doc; make clean
rm -f distribute*.gz distribute*.egg
rm -rf src/futuregrid.egg-info
rm -f PKG-INFO


######################################################################
# pypi
Expand All @@ -79,7 +87,7 @@ clean:
pip-register:
python setup.py register

upload:
pip-upload:
make -f Makefile pip
python setup.py sdist upload

Expand All @@ -94,6 +102,10 @@ sphinx:
# PUBLISH GIT HUB PAGES
###############################################################################

gh-pages:
gh-pages: clean
git checkout gh-pages
make

gh-pages-devmode:
git checkout gh-pages
make all-devmode
Loading

0 comments on commit 2275b6a

Please sign in to comment.