blob: 39130ed658086c4dd601bdac7644f765eb38ec98 [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
Prathmesh Prabhu72f8a002020-04-10 09:57:53 -07007setup(name='chromiumos',
C Shapirod2166672020-03-12 12:55:46 -05008 version='1.0',
9 description='Module to access Config API python proto bindings',
Prathmesh Prabhu72f8a002020-04-10 09:57:53 -070010 packages=['chromiumos'],
11 package_data={'chromiumos': [
12 'config/api/*.py',
13 'config/api/software/*.py',
14 'config/api/software/**/*.py',
15 'config/payload/*.py',
16 'config/test/*.py',
17 'config/test/fake_program/*',
18 'config/test/fake_project/*',
C Shapirod2166672020-03-12 12:55:46 -050019 ]},)