blob: 2166e660908c749df6738c2a1000db3997277885 [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 Shapiroea4d0632020-03-14 04:30:12 -050015 'test/*.py',
16 'test/fake_program/*',
17 'test/fake_project/*',
C Shapirod2166672020-03-12 12:55:46 -050018 ]},)