# Copyright 2012-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.1#2# Licensed under the Apache License, Version 2.0 (the "License"). You3# may not use this file except in compliance with the License. A copy of4# the License is located at5#6# http://aws.amazon.com/apache2.0/7#8# or in the "license" file accompanying this file. This file is9# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF10# ANY KIND, either express or implied. See the License for the specific11# language governing permissions and limitations under the License.12"""13AWSCLI14----15A Universal Command Line Environment for Amazon Web Services.16"""1718import os1920__version__ = '1.42.25'2122#23# Get our data path to be added to botocore's search path24#25_awscli_data_path = []26if 'AWS_DATA_PATH' in os.environ:27for path in os.environ['AWS_DATA_PATH'].split(os.pathsep):28path = os.path.expandvars(path)29path = os.path.expanduser(path)30_awscli_data_path.append(path)31_awscli_data_path.append(32os.path.join(os.path.dirname(os.path.abspath(__file__)), 'data')33)34os.environ['AWS_DATA_PATH'] = os.pathsep.join(_awscli_data_path)353637EnvironmentVariables = {38'ca_bundle': ('ca_bundle', 'AWS_CA_BUNDLE', None, None),39'output': ('output', 'AWS_DEFAULT_OUTPUT', 'json', None),40}414243SCALAR_TYPES = set(44[45'string',46'float',47'integer',48'long',49'boolean',50'double',51'blob',52'timestamp',53]54)55COMPLEX_TYPES = set(['structure', 'map', 'list'])565758