blob: 6dc5e61273c7863b1ee5cb18f6a964a3eb34b90a [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',
C Shapiro01761d12021-09-21 16:11:08 -050019 'config/public_replication/*.py',
Prathmesh Prabhu72f8a002020-04-10 09:57:53 -070020 'config/test/*.py',
21 'config/test/fake_program/*',
22 'config/test/fake_project/*',
C Shapiro6ab27dd2021-06-18 16:13:14 -050023 'test/*.py',
24 'test/api/*.py',
25 'test/internal/*.py',
26 'test/lab/*.py',
27 'test/lab/api/*.py',
C Shapirod2166672020-03-12 12:55:46 -050028 ]},)