thirdparty/google_appengine/appcfg.py
changeset 109 620f9b141567
child 149 f2e327a7c5de
equal deleted inserted replaced
108:261778de26ff 109:620f9b141567
       
     1 #!/usr/bin/env python
       
     2 #
       
     3 # Copyright 2007 Google Inc.
       
     4 #
       
     5 # Licensed under the Apache License, Version 2.0 (the "License");
       
     6 # you may not use this file except in compliance with the License.
       
     7 # You may obtain a copy of the License at
       
     8 #
       
     9 #     http://www.apache.org/licenses/LICENSE-2.0
       
    10 #
       
    11 # Unless required by applicable law or agreed to in writing, software
       
    12 # distributed under the License is distributed on an "AS IS" BASIS,
       
    13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
       
    14 # See the License for the specific language governing permissions and
       
    15 # limitations under the License.
       
    16 #
       
    17 """Convenience wrapper for starting appcfg."""
       
    18 
       
    19 
       
    20 import os
       
    21 import sys
       
    22 
       
    23 if not hasattr(sys, 'version_info'):
       
    24   sys.stderr.write('Very old versions of Python are not supported. Please '
       
    25                    'use version 2.5 or greater.\n')
       
    26   sys.exit(1)
       
    27 version_tuple = tuple(sys.version_info[:2])
       
    28 if version_tuple < (2, 4):
       
    29   sys.stderr.write('Error: Python %d.%d is not supported. Please use '
       
    30                    'version 2.5 or greater.\n' % version_tuple)
       
    31   sys.exit(1)
       
    32 if version_tuple == (2, 4):
       
    33   sys.stderr.write('Warning: Python 2.4 is not supported; this program may '
       
    34                    'break. Please use version 2.5 or greater.\n')
       
    35 
       
    36 APPCFG_PATH = 'google/appengine/tools/appcfg.py'
       
    37 
       
    38 DIR_PATH = os.path.abspath(os.path.dirname(os.path.realpath(__file__)))
       
    39 
       
    40 EXTRA_PATHS = [
       
    41   DIR_PATH,
       
    42   os.path.join(DIR_PATH, 'lib', 'yaml', 'lib'),
       
    43 ]
       
    44 
       
    45 if __name__ == '__main__':
       
    46   sys.path = EXTRA_PATHS + sys.path
       
    47   script_path = os.path.join(DIR_PATH, APPCFG_PATH)
       
    48   execfile(script_path, globals())