Skip to content

Commit

Permalink
Merge pull request #50 from camlloyd/v0.4.0
Browse files Browse the repository at this point in the history
Prepare for v0.4.0 release
  • Loading branch information
camlloyd authored Jul 18, 2023
2 parents 2dfcbdf + 219521f commit b63e8cb
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 2 deletions.
12 changes: 12 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.dockerignore
.git
.github
.gitignore
.idea
build
dist
oct_to_tiff.egg-info
Dockerfile
*.md
*.txt
*.cff
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Version 0.4.0
* Add support for extracting segmentation lines
* Add mutually exclusive group to parser
* Drop support for Python 3.7
* Refactoring

## Version 0.3.0
* Add support for Retina Map scan pattern
* Add support for ONH scan pattern
Expand Down
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# syntax=docker/dockerfile:1
FROM python:3.8.17-slim

LABEL org.opencontainers.image.authors="Cameron Lloyd <lloyd@med.unideb.hu>" \
org.opencontainers.image.source="https://github.com/camlloyd/oct-to-tiff" \
org.opencontainers.image.licenses="BSD-3-Clause" \
org.opencontainers.image.title="oct-to-tiff" \
org.opencontainers.image.description="A command line tool for converting optical coherence tomography angiography (OCTA) data."

WORKDIR /app

RUN pip install --no-cache-dir oct-to-tiff==0.4.0

COPY . .

ENTRYPOINT [ "python", "src/oct_to_tiff/cli.py" ]
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = oct_to_tiff
version = 0.3.0
version = 0.4.0
author = Cameron Lloyd
author_email = lloyd@med.unideb.hu
description = A command line tool for converting optical coherence tomography angiography (OCTA) data.
Expand Down
2 changes: 1 addition & 1 deletion src/oct_to_tiff/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def main():
action="store_true",
help="extract segmentation lines",
)
parser.add_argument("--version", action="version", version="%(prog)s 0.3.0")
parser.add_argument("--version", action="version", version="%(prog)s 0.4.0")
args = parser.parse_args()

input_path = args.input
Expand Down

0 comments on commit b63e8cb

Please sign in to comment.