Skip to content

Add basic README for auxiliary repository#44

Merged
neuronflow merged 7 commits intomainfrom
copilot/add-basic-readme-file
Dec 10, 2025
Merged

Add basic README for auxiliary repository#44
neuronflow merged 7 commits intomainfrom
copilot/add-basic-readme-file

Conversation

Copy link
Contributor

Copilot AI commented Nov 29, 2025

Creates a basic README.md file for the auxiliary repository, inspired by the BrainLesion/PeTu repository structure.

Changes Made

  • Badges: Added PyPI version, Python versions, ReadTheDocs status, and Apache 2.0 license badges
  • Package overview: Added description of the auxiliary package as a medical image processing utility library
  • Installation: Included PyPI and Conda installation instructions, plus optional dcm2niix dependency
  • Usage examples: Organized by format with dedicated I/O sections for NIfTI, DICOM, and TIFF, plus image normalization examples
  • License update: Updated pyproject.toml license from AGPL-3.0 to Apache-2.0 to match the existing LICENSE file

Fixes #37

Original prompt

This section details on the original issue you should resolve

<issue_title>[FEATURE] auxiliary needs a basic readme file</issue_title>
<issue_description>:)</issue_description>

<agent_instructions>please create a basic readme for this repository, take this repo as inspiration:
https://github.com/BrainLesion/PeTu</agent_instructions>

Comments on the Issue (you are @copilot in this section)


✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot wasn't able to review any files in this pull request.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Co-authored-by: neuronflow <7048826+neuronflow@users.noreply.github.com>
Copilot AI changed the title [WIP] Add basic README file for auxiliary repository Add basic README for auxiliary repository Nov 29, 2025
Copilot AI requested a review from neuronflow November 29, 2025 16:40
Copy link
Collaborator

@neuronflow neuronflow left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot remove this section ## Contributing

We welcome all kinds of contributions from the community!

Reporting Bugs, Feature Requests and Questions

Please open a new issue here.

Code Contributions

Nice to have you on board! Please have a look at our CONTRIBUTING.md file.

Co-authored-by: neuronflow <7048826+neuronflow@users.noreply.github.com>
Copy link
Contributor Author

Copilot AI commented Nov 29, 2025

@copilot remove this section ## Contributing

We welcome all kinds of contributions from the community!...

Removed the Contributing section in 4005330.

Copy link
Collaborator

@neuronflow neuronflow left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot also show how to read and write DICOM files

maybe an i/o section for each format, nifti, DICOM, tiff

Co-authored-by: neuronflow <7048826+neuronflow@users.noreply.github.com>
Copy link
Contributor Author

Copilot AI commented Nov 29, 2025

@copilot also show how to read and write DICOM files

maybe an i/o section for each format, nifti, DICOM, tiff

Reorganized the Usage section with separate I/O sections for NIfTI, DICOM, and TIFF formats. Added examples showing how to read DICOM series and write to DICOM format (with optional reference DICOM for metadata) in be6e583.

Copy link
Collaborator

@neuronflow neuronflow left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot also show how to write numpy arrays to DICOM with and without reference images

…ence images

Co-authored-by: neuronflow <7048826+neuronflow@users.noreply.github.com>
Copy link
Contributor Author

Copilot AI commented Nov 29, 2025

@copilot also show how to write numpy arrays to DICOM with and without reference images

Added examples showing how to write NumPy arrays to DICOM format with and without reference images in c23433c.

Copilot AI requested a review from neuronflow November 29, 2025 16:57
@neuronflow neuronflow requested review from MarcelRosier and removed request for neuronflow November 29, 2025 16:58
@neuronflow neuronflow requested review from Copilot and neuronflow and removed request for neuronflow November 29, 2025 16:58
@neuronflow neuronflow marked this pull request as ready for review November 29, 2025 16:59
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 1 out of 1 changed files in this pull request and generated 1 comment.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

[![Python Versions](https://img.shields.io/pypi/pyversions/auxiliary)](https://pypi.org/project/auxiliary/)
[![Stable Version](https://img.shields.io/pypi/v/auxiliary?label=stable)](https://pypi.org/project/auxiliary/)
[![Documentation Status](https://readthedocs.org/projects/auxiliary/badge/?version=latest)](http://auxiliary.readthedocs.io/?badge=latest)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
Copy link

Copilot AI Nov 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The License badge indicates "Apache 2.0" but according to pyproject.toml (line 13), the project is licensed under "AGPL-3.0". The badge should be updated to reflect the correct license.

Suggested change
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![License](https://img.shields.io/badge/License-AGPL%20v3-blue.svg)](https://www.gnu.org/licenses/agpl-3.0.html)

Copilot uses AI. Check for mistakes.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot no in this case please change the project license to Apache 2.0

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated pyproject.toml license from AGPL-3.0 to Apache-2.0 in f170a74. The LICENSE file already contained the Apache 2.0 license, so this makes everything consistent.

Co-authored-by: neuronflow <7048826+neuronflow@users.noreply.github.com>
Copy link
Collaborator

@neuronflow neuronflow left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm but I am quite sure things could be better :)

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 2 out of 2 changed files in this pull request and generated no new comments.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Copy link
Collaborator

@neuronflow neuronflow left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm anything is better than no readme.

Added citation section with reference for the auxiliary framework.
@neuronflow neuronflow self-requested a review December 10, 2025 11:40
@neuronflow neuronflow removed the request for review from MarcelRosier December 10, 2025 11:41
@neuronflow neuronflow merged commit 8222718 into main Dec 10, 2025
1 check passed
@neuronflow neuronflow deleted the copilot/add-basic-readme-file branch December 10, 2025 11:43
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 2 out of 2 changed files in this pull request and generated no new comments.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[FEATURE] auxiliary needs a basic readme file

3 participants