Sean O'Brien | 2c47301 | 2020-09-09 16:50:32 -0700 | [diff] [blame] | 1 | # 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 | |
| 5 | from setuptools import setup |
| 6 | |
| 7 | setup(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 | |