blob: 815080098536662d7c66987dca02af8276da4ab2 [file] [log] [blame]
C Shapirod2166672020-03-12 12:55:46 -05001# Copyright 2020 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5from distutils.core import setup
6
7
8setup(name='config',
9 version='1.0',
10 description='Module to access Config API python proto bindings',
11 packages=['config'],
12 package_data={'config': [
13 'api/*.py',
14 'api/software/*.py',
15 'api/software/**/*.py',
16 ]},)