From 08651c4c2210c05795301a914fdeb0af869f52b9 Mon Sep 17 00:00:00 2001 From: Nick Piggott Date: Wed, 26 Jan 2022 13:40:16 +0000 Subject: [PATCH] Update setup.py Fixed the location of dump_binary to bin/dump_binary --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 85c034e..fffb046 100644 --- a/setup.py +++ b/setup.py @@ -14,5 +14,5 @@ packages=['spi', 'spi.xml', 'spi.binary'], package_dir = {'' : 'src'}, install_requires = ['python-dateutil', 'isodate', 'bitarray', 'asciitree'], - scripts=['dump_binary'] + scripts=['bin/dump_binary'] )