blob: 276357fd1bb5f6c83e00ce212bb20b1bdd22c1e4 [file] [log] [blame]
Sean O'Brien2c473012020-09-09 16:50:32 -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 setup
6
7setup(name='usi-test',
8 version='1.0',
9 description='USI Device Testing Tool',
10 long_description='This contains tools for testing USI devices.',
11 py_modules=['usi_test'],
12 author='Sean O\'Brien',
13 author_email='seobrien@chromium.org',
14 license='BSD-Google',
15 entry_points={
16 'console_scripts': [
17 'usi-test = usi_test:main'
18 ]
19 },
20 python_requires='>=3.6',
21 install_requires=['hid-tools==0.2']
22)
23