C Shapiro | d216667 | 2020-03-12 12:55:46 -0500 | [diff] [blame] | 1 | # 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 | |
| 5 | from distutils.core import setup |
| 6 | |
Prathmesh Prabhu | 72f8a00 | 2020-04-10 09:57:53 -0700 | [diff] [blame] | 7 | setup(name='chromiumos', |
C Shapiro | d216667 | 2020-03-12 12:55:46 -0500 | [diff] [blame] | 8 | version='1.0', |
| 9 | description='Module to access Config API python proto bindings', |
Prathmesh Prabhu | 72f8a00 | 2020-04-10 09:57:53 -0700 | [diff] [blame] | 10 | packages=['chromiumos'], |
| 11 | package_data={'chromiumos': [ |
| 12 | 'config/api/*.py', |
| 13 | 'config/api/software/*.py', |
| 14 | 'config/api/software/**/*.py', |
David Riley | e1eb003 | 2020-05-06 11:45:49 -0700 | [diff] [blame^] | 15 | 'config/api/test/*.py', |
| 16 | 'config/api/test/results/*.py', |
| 17 | 'config/api/test/results/graphics/*.py', |
| 18 | 'config/api/test/results/graphics/v1/*.py', |
| 19 | 'config/api/test/results/v1/*.py', |
Prathmesh Prabhu | 72f8a00 | 2020-04-10 09:57:53 -0700 | [diff] [blame] | 20 | 'config/payload/*.py', |
| 21 | 'config/test/*.py', |
| 22 | 'config/test/fake_program/*', |
| 23 | 'config/test/fake_project/*', |
C Shapiro | d216667 | 2020-03-12 12:55:46 -0500 | [diff] [blame] | 24 | ]},) |