blob: 5b1f064f33b5790a36695f91ca1fd81baf00e3d4 [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='autotest_lib',
version='1.0',
description='Tauto harness package',
packages=find_packages(),
package_data={'': ['*']},
entry_points={
'console_scripts': [
'tauto_run = autotest_lib.site_utils.test_that:main',
]
}
)