blob: b82b424902f23071a4ee6cb07291317e0431a6c0 [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
C Shapirod2166672020-03-12 12:55:46 -05007setup(name='config',
8 version='1.0',
9 description='Module to access Config API python proto bindings',
10 packages=['config'],
11 package_data={'config': [
12 'api/*.py',
13 'api/software/*.py',
14 'api/software/**/*.py',
C Shapirofd83a5f2020-03-31 08:56:20 -050015 'payload/*.py',
C Shapiroea4d0632020-03-14 04:30:12 -050016 'test/*.py',
17 'test/fake_program/*',
18 'test/fake_project/*',
C Shapirod2166672020-03-12 12:55:46 -050019 ]},)