blob: 5b1f064f33b5790a36695f91ca1fd81baf00e3d4 [file] [log] [blame]
Derek Beckett287fbc52021-09-30 09:22:39 -07001# 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 setuptools import find_packages, setup
6
7setup(
8 name='autotest_lib',
9 version='1.0',
10 description='Tauto harness package',
11 packages=find_packages(),
12 package_data={'': ['*']},
13 entry_points={
14 'console_scripts': [
15 'tauto_run = autotest_lib.site_utils.test_that:main',
16 ]
17 }
18)