blob: ae8cd99853a98f635c6d909d1b2d9c87496c50e1 [file] [log] [blame]
# Copyright 2020 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from setuptools import find_packages, setup
setup(
name='chromiumos',
version='1.0',
description='Module to access Config API python proto bindings',
packages=find_packages(),
package_data={
'chromiumos.config.test': ['fake_program/*', 'fake_project/*']
},
)