Skip to content

Commit

Permalink
feat: add method fxnality
Browse files Browse the repository at this point in the history
  • Loading branch information
jjjermiah committed May 23, 2024
1 parent 07b553a commit 39067a4
Show file tree
Hide file tree
Showing 8 changed files with 207 additions and 158 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![Built with Material for MkDocs](https://img.shields.io/badge/mkdocs--material-gray?logo=materialformkdocs)](https://github.com/squidfunk/mkdocs-material)

[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pydicomsorter)](https://pypi.org/project/pydicomsorter/)
[![PyPI - Version](https://img.shields.io/pypi/v/PyDicomSorter)](https://pypi.org/project/pydicomsorter/)
[![PyPI - Format](https://img.shields.io/pypi/format/PyDicomSorter)](https://pypi.org/project/pydicomsorter/)
[![pixi-badge](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/prefix-dev/pixi/main/assets/badge/v0.json&style=flat-square)](https://github.com/prefix-dev/pixi)
Expand All @@ -17,6 +18,7 @@ Testing the pydicom library to sort dicom files by patient name and study date.
Designing should look like:



``` bash
Usage: dicomsort [OPTIONS] SOURCEDIR DESTINATION_DIR

Expand Down
17 changes: 17 additions & 0 deletions help.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
50 changes: 25 additions & 25 deletions pixi.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ changelog = "https://github.com/jjjermiah/pydicomsorter/blob/main/docs/CHANGELOG
issues = "https://github.com/jjjermiah/pydicomsorter/issues"

[project.scripts]
dicomsort = "pydicomsorter.cli:main"
dicomsort = "pydicomsorter.cli:cli"

[build-system]
requires = ["hatchling"]
Expand Down
4 changes: 2 additions & 2 deletions src/pydicomsorter/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
"""This is a docstring for the public package."""

from .cli import main
from .cli import cli
from .io import find_dicom_files

version = '0.10.0'

__all__ = [
'find_dicom_files',
'main',
'cli',
'version',
]
Loading

0 comments on commit 39067a4

Please sign in to comment.