From d5f774e504ddf1f96f95b795f0da538f6b60f992 Mon Sep 17 00:00:00 2001 From: Anca Date: Wed, 24 Jun 2026 17:32:44 +0700 Subject: [PATCH] add python library requirements --- requirements.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..830f8a3 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,13 @@ +# Requirements for dicom_indexer.py and dicom_sender.py +# +# Install with: +# pip install -r requirements.txt +# +# pydicom - required by both scripts (reading DICOM metadata/files) +# openpyxl - required only if using dicom_indexer.py's --xlsx option, +# or dicom_sender.py reading a .xlsx index file +# pynetdicom - required only by dicom_sender.py (C-ECHO / C-STORE network operations) + +pydicom>=3.0.2 +openpyxl>=3.1.5 +pynetdicom>=3.0.4 \ No newline at end of file