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 | |
Chris McDonald | 7959ae7 | 2021-09-22 09:35:01 -0600 | [diff] [blame] | 5 | from setuptools import find_packages, setup |
C Shapiro | d216667 | 2020-03-12 12:55:46 -0500 | [diff] [blame] | 6 | |
Chris McDonald | 7959ae7 | 2021-09-22 09:35:01 -0600 | [diff] [blame] | 7 | setup( |
| 8 | name='chromiumos', |
| 9 | version='1.0', |
| 10 | description='Module to access Config API python proto bindings', |
| 11 | packages=find_packages(), |
| 12 | package_data={ |
| 13 | 'chromiumos.config.test': ['fake_program/*', 'fake_project/*'] |
| 14 | }, |
| 15 | ) |