1*bf47c682SAndroid Build Coastguard Worker#!/usr/bin/env python 2*bf47c682SAndroid Build Coastguard Worker 3*bf47c682SAndroid Build Coastguard Workerfrom setuptools import setup, find_packages 4*bf47c682SAndroid Build Coastguard Worker 5*bf47c682SAndroid Build Coastguard Workersetup( 6*bf47c682SAndroid Build Coastguard Worker name='pywalt', 7*bf47c682SAndroid Build Coastguard Worker entry_points={ 8*bf47c682SAndroid Build Coastguard Worker 'console_scripts': ( 9*bf47c682SAndroid Build Coastguard Worker 'walt = pywalt.walt:main', 10*bf47c682SAndroid Build Coastguard Worker ), 11*bf47c682SAndroid Build Coastguard Worker }, 12*bf47c682SAndroid Build Coastguard Worker install_requires=['pyserial'], 13*bf47c682SAndroid Build Coastguard Worker packages=find_packages(), 14*bf47c682SAndroid Build Coastguard Worker description='WALT Latency Timer', 15*bf47c682SAndroid Build Coastguard Worker license='Apache 2.0', 16*bf47c682SAndroid Build Coastguard Worker url='https://github.com/google/walt', 17*bf47c682SAndroid Build Coastguard Worker) 18