X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=setup.py;h=4bd45834bc3377537514690e3d36a2125758a86c;hb=5af967b32b6ebbbc6a3ce439144eb0d69be5aece;hp=b5094433ae2e99e8c5126e2fd0ea00829753636d;hpb=2c7dd0a6cf81bc3da6ea162a4db166db730ba74d;p=sfa.git diff --git a/setup.py b/setup.py index b5094433..4bd45834 100755 --- a/setup.py +++ b/setup.py @@ -4,6 +4,10 @@ Installation script for the sfa module """ +# as fas as pushing onto pypi, I have been using this page +# http://peterdowns.com/posts/first-time-with-pypi.html +# for setting up the whole business + import sys, os, os.path from glob import glob import shutil @@ -115,9 +119,12 @@ else: setup(name='sfa', packages = packages, data_files = data_files, - scripts = scripts, + version=version_tag, + keywords = ['federation','testbeds','SFA','SfaWrap'], url="http://svn.planet-lab.org/wiki/SFATutorial", author="Thierry Parmentelat, Tony Mack, Scott Baker", author_email="thierry.parmentelat@inria.fr, tmack@princeton.cs.edu, smbaker@gmail.com", - version=version_tag) + download_url = "http://build.onelab.eu/sfa/{v}/sfa-{v}.tar.gz".format(v=version_tag), + scripts = scripts, +)