blob: 15d26306285db4e2713e2e2135321cf5477631dd [file] [log] [blame]
# Copyright 2020 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
PYTHON_VERSION_COMPATIBILITY = "PY3"
DEPS = [
"fuchsia/cache",
"recipe_engine/buildbucket",
"recipe_engine/context",
"recipe_engine/file",
"recipe_engine/path",
"recipe_engine/platform",
"recipe_engine/raw_io",
"recipe_engine/step",
]
from recipe_engine.recipe_api import Property
from recipe_engine.config import ConfigGroup, Single
PROPERTIES = {
"$fuchsia/git": Property(
help="Properties specifically for the git module",
param_name="git_properties",
kind=ConfigGroup(
# The named cache path.
cache_path=Single(str),
),
default={},
),
}