blob: 649144b241d7e0f435928d4a47a0c0ec19454254 [file] [log] [blame]
Derek Beckettcd2b0e22021-10-05 10:30:43 -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 = autotest_lib.client.bin.autotest',
16 'tauto_client = autotest_lib.client.bin.autotest_client',
17 'tautod = autotest_lib.client.bin.autotestd',
18 'tautod_monitor = autotest_lib.client.bin.autotestd_monitor',
19 ]
20 }
21)