blob: cada5c846d7bef6ef9e6c1324ebf4b2985e87afe [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': [
C Shapiro6ab27dd2021-06-18 16:13:14 -050012 '*.py',
13 'build/api/*.py',
14 'build/payload/*.py',
Prathmesh Prabhu72f8a002020-04-10 09:57:53 -070015 'config/api/*.py',
16 'config/api/software/*.py',
17 'config/api/software/**/*.py',
18 'config/payload/*.py',
19 'config/test/*.py',
20 'config/test/fake_program/*',
21 'config/test/fake_project/*',
C Shapiro6ab27dd2021-06-18 16:13:14 -050022 'test/*.py',
23 'test/api/*.py',
24 'test/internal/*.py',
25 'test/lab/*.py',
26 'test/lab/api/*.py',
C Shapirod2166672020-03-12 12:55:46 -050027 ]},)