From a4e43ff07b7cbb47cec3fbb412d338465c9ce024 Mon Sep 17 00:00:00 2001 From: kieranjol Date: Fri, 3 Apr 2020 18:08:15 +0100 Subject: [PATCH] setup - sorts scripts in alphabetical order and adds new ones --- setup.py | 59 +++++++++++++++++++++++++++++++------------------------- 1 file changed, 33 insertions(+), 26 deletions(-) diff --git a/setup.py b/setup.py index eff2243..d325275 100644 --- a/setup.py +++ b/setup.py @@ -19,51 +19,58 @@ NOTE: Objects.py has been copied from https://github.com/simsong/dfxml. walk_to_dfxml.py has also been copied but has been customised in order to add command line arguments for optionally turning off checksum generation. For more context, see https://github.com/simsong/dfxml/pull/28 """), scripts=[ - 'sipcreator.py', - 'ififuncs.py', - 'copyit.py', - 'masscopy.py', + 'Objects.py', 'accession.py', 'accession_register.py', 'batchaccession.py', - 'concat.py', - 'makeffv1.py', - 'makepbcore.py', - 'manifest.py', - 'validate.py', - 'Objects.py', - 'makedfxml.py', - 'dfxml.py', - 'walk_to_dfxml.py', + 'batchsipcreator.py', 'bitc.py', - 'prores.py', - 'dcpfixity.py', + 'concat.py', + 'copyit.py', 'dcpaccess.py', + 'dcpfixity.py', 'deletefiles.py', - 'package_update.py', + 'dfxml.py', 'durationcheck.py', 'ffv1mkvvalidate.py', + 'framemd5.py', + 'ififuncs.py', 'loopline_repackage.py', - 'seq2ffv1.py', + 'makedfxml.py', + 'makedip.py', + 'makeffv1.py', + 'makepbcore.py', 'makeuuid.py', + 'makezip.py', + 'manifest.py', 'masscopy.py', + 'massqc.py', + 'mergepbcore.py', + 'multicopy.py', + 'normalise.py', + 'order.py', + 'package_update.py', 'packagecheck.py', + 'prores.py', + 'seq2ffv1.py', + 'sipcreator.py', + 'strongbox_fixity.py', + 'subfolders.py', 'testfiles.py', - 'normalise.py', - 'makezip.py', - 'multicopy.py' + 'validate.py', + 'walk_to_dfxml.py' ], license='MIT', install_requires=[ - 'lxml', - 'bagit', - 'dicttoxml', - 'future', - 'clairmeta' + 'lxml', + 'bagit', + 'dicttoxml', + 'future', + 'clairmeta' ], data_files=[('', ['film_scan_aip_documentation.txt', '26_XYZ-22_Rec709.cube'])], include_package_data=True, name='ifiscripts', - version='v2020.04.03', + version='v2020.04.03.1', python_requires='>=3.8' )