blob: 815080098536662d7c66987dca02af8276da4ab2 [file] [log] [blame]
# Copyright 2020 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from distutils.core import setup
setup(name='config',
version='1.0',
description='Module to access Config API python proto bindings',
packages=['config'],
package_data={'config': [
'api/*.py',
'api/software/*.py',
'api/software/**/*.py',
]},)