From 4e19333372f14b8f8b10c61bfe60908634adc55a Mon Sep 17 00:00:00 2001 From: WinStyle Date: Sat, 20 Jan 2018 15:20:28 +0800 Subject: [PATCH 1/3] Update setup.py There no file named stdf2atdf in folder scripts --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1bd5660..90ce7e0 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ author_email='casey.marshall@gmail.com', url='http://code.google.com/p/pystdf/', packages=['pystdf','pystdf.explorer'], - scripts=['scripts/stdf_slice', 'scripts/rec_index', 'scripts/stdf2atdf', + scripts=['scripts/stdf_slice', 'scripts/rec_index', 'scripts/stdf2xml'], classifiers=[ 'Development Status :: 4 - Beta', From 9973ec8551f520e70a1ca34ad570c8967d2bbe0e Mon Sep 17 00:00:00 2001 From: WinStyle Date: Mon, 29 Jan 2018 01:16:29 +0800 Subject: [PATCH 2/3] Update setup.py add the stdf2excel and stdf2text in setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 90ce7e0..1e6812e 100644 --- a/setup.py +++ b/setup.py @@ -45,8 +45,8 @@ author_email='casey.marshall@gmail.com', url='http://code.google.com/p/pystdf/', packages=['pystdf','pystdf.explorer'], - scripts=['scripts/stdf_slice', 'scripts/rec_index', - 'scripts/stdf2xml'], + scripts=['scripts/stdf_slice', 'scripts/rec_index','scripts/stdf2text', + 'scripts/stdf2excel','scripts/stdf2xml'], classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Console', From 38060351f117d8b611bcaea0e5a7d71914961ea0 Mon Sep 17 00:00:00 2001 From: WinStyle Date: Mon, 29 Jan 2018 01:19:35 +0800 Subject: [PATCH 3/3] Update setup.py Update the code format --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 1e6812e..f5c40bb 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python + #!/usr/bin/env python # # PySTDF - The Pythonic STDF Parser # Copyright (C) 2006 Casey Marshall @@ -45,8 +45,8 @@ author_email='casey.marshall@gmail.com', url='http://code.google.com/p/pystdf/', packages=['pystdf','pystdf.explorer'], - scripts=['scripts/stdf_slice', 'scripts/rec_index','scripts/stdf2text', - 'scripts/stdf2excel','scripts/stdf2xml'], + scripts=['scripts/stdf_slice', 'scripts/rec_index', 'scripts/stdf2text', + 'scripts/stdf2excel', 'scripts/stdf2xml'], classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Console',