X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=setup.py;h=15ccf5871f6f37cabef28f72dd398323be505080;hb=0628d10d2570922488f8170b65fbd67b57927bc6;hp=c8259f92d3ef0ee6a3d9ebdd356d0563fa7d006a;hpb=0a4c02a2bf0bf21726a6decf3e7f3f01ed32d89a;p=sfa.git diff --git a/setup.py b/setup.py index c8259f92..15ccf587 100755 --- a/setup.py +++ b/setup.py @@ -15,6 +15,13 @@ from glob import glob import shutil from distutils.core import setup +# check for the correct version of python +major,minor = sys.version_info [0:2] +if (major,minor) != (2,7): + print ("Sorry, the SFA package is currently available only with python-2.7") + exit(1) + + # while cleaning up we might not have this.. try: from sfa.util.version import version_tag @@ -119,24 +126,30 @@ if sys.argv[1] in ['uninstall', 'remove', 'delete', 'clean']: feedback (directory, "failed") else: # avoid repeating what's in the specfile already - with open("LICENSE.txt") as l: - license = l.read() - long_description = "Could not open README.html" - with open("readme.html") as r: - long_description = r.read() - - setup(name='sfa', - packages = packages, - data_files = data_files, - 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", - download_url = "http://build.onelab.eu/sfa/{v}/sfa-{v}.tar.gz".format(v=version_tag), - description="SFA Wrapper with drivers for PlanetLab and IotLab and others", - license = license, - long_description = long_description, - scripts = scripts, + try: + with open("LICENSE.txt") as l: + license = l.read() + except: + license = "Could not open file LICENSE.txt" + try: + with open("index.html") as r: + long_description = r.read() + except: + long_description = "Unable to read index.html" + + setup( + name = 'sfa', + packages = packages, + data_files = data_files, + 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", + download_url = "http://build.onelab.eu/sfa/{v}/sfa-{v}.tar.gz".format(v=version_tag), + description = "SFA Wrapper with drivers for PlanetLab and IotLab and others", + license = license, + long_description = long_description, + scripts = scripts, )