From 80285e93570f8cef071ecf46531d7e5a34fc7533 Mon Sep 17 00:00:00 2001 From: Maxime Mulder Date: Fri, 21 Nov 2025 05:13:34 +0000 Subject: [PATCH] rename main package --- install/imaging_install.sh | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/install/imaging_install.sh b/install/imaging_install.sh index 9d23b2c07..9912e5a3c 100755 --- a/install/imaging_install.sh +++ b/install/imaging_install.sh @@ -99,7 +99,7 @@ echo echo "Creating loris-mri Python virtualenv in $mridir/.venv/" # create a directory in $mridir that will store python 3 virtualenv sudo -S su $USER -c "mkdir -m 770 -p $mridir/.venv" -python3.11 -m venv $mridir/.venv --prompt loris-python +python3.11 -m venv $mridir/.venv --prompt loris source $mridir/.venv/bin/activate echo "Installing the Python libraries into the loris-mri virtualenv..." pip3 install $mridir diff --git a/pyproject.toml b/pyproject.toml index 068ac2b6b..56b17b788 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,9 +3,9 @@ requires = ["hatchling"] build-backend = "hatchling.build" [project] -name = "loris-mri" +name = "loris" version = "27.0.0" -description = "The LORIS Python scripts" +description = "The LORIS Python package" readme = "README.md" license = "GPL-3.0-or-later" license-files = ["LICENSE"]