Skip to content

Commit

Permalink
[Release] v1.0.8 Update Readme, no more ninja as deps
Browse files Browse the repository at this point in the history
  • Loading branch information
sygslhy committed Dec 13, 2024
1 parent 89bb054 commit 3b72482
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
![Supported OS](https://img.shields.io/badge/OS-Linux_%7C_Windows_%7C_macOS-blue)
![Supported Archi](https://img.shields.io/badge/Architecture-x86__64_%7C_ARM__64-green)
[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://github.com/sygslhy/image-io/blob/main/LICENSE.md)
![pypi/downloads](https://shields.io/pypi/dm/cxx-image-io)
![Wheel OS](https://img.shields.io/badge/wheels-Linux_%7C_Windows_%7C_macOS-green)
[![CI](https://github.com/sygslhy/image-io/actions/workflows/wheels.yml/badge.svg)](https://github.com/sygslhy/image-io/actions/workflows/wheels.yml)
[![Weekly](https://github.com/sygslhy/image-io/actions/workflows/schedule.yml/badge.svg)](https://github.com/sygslhy/image-io/actions/workflows/schedule.yml)
Expand All @@ -22,7 +21,7 @@ These IO interfaces are designed to read and write images in many file formats i
| DNG | x | x | x | 16 bits, float | Bayer, RGB | .dng | |
| JPEG | x | x | x | 8 bits | Grayscale, RGB | .jpg, .jpeg | |
| MIPI RAW | x | x | | 10 bits, 12 bits | Bayer | .RAWMIPI, .RAWMIPI10, .RAWMIPI12 | x |
| PLAIN RAW | x | x | | * | * | .plain16, .nv12, yuv, * | x |
| PLAIN RAW | x | x | | * | * | .raw .plain16, .nv12, yuv, * | x |
| PNG | x | x | | 8 bits, 16 bits | Grayscale, RGB, RGBA | .png | |
| TIFF | x | x | x | 8 bits, 16 bits, float | Bayer, RGB | .tif, .tiff | |

Expand Down Expand Up @@ -169,9 +168,9 @@ sidecar json
"fileInfo": {
"height": 3000,
"width": 4000,
"format": "raw10",
"pixelPrecision": 10,
"pixelType": "bayer_grbg"
"format": "raw10",
"pixelPrecision": 10,
"pixelType": "bayer_grbg"
}
}
~~~~~~~~~~~~~~~
Expand Down
11 changes: 6 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ build-backend = "setuptools.build_meta"

[project]
name = "cxx-image-io"
version = "1.0.7"
version = "1.0.8"
dependencies = [
"numpy>=2.1.0", "ninja>=1.11.1", "packaging>=23.2"
"numpy>=2.1.0", "packaging>=23.2"
]
authors = [{name = "Yuan SUN", email = "sunyuan860510@gmail.com"}]
maintainers = [{name = "Yuan SUN", email = "sunyuan860510@gmail.com"}]
description = "Image IO APIs for wide range image formats (jpg, png, tif, dng, bmp, yuv, nv12 and RAWs), support Exif, interact nicely with numpy array."
requires-python = ">=3.10"
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "MIT License"}
keywords = ["image", "io", "numpy io", "exif io", "bmp io", "raw io", "dng io", "jpg io", "png io", "tif io", "exif", "yuv io", "nv12 io"]
keywords = ["image", "io", "numpy", "exif", "bmp", "raw io", "dng", "jpg", "png", "tif", "exif io", "yuv io", "nv12 io"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
Expand All @@ -23,14 +23,15 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: C++",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Topic :: Scientific/Engineering",
"Topic :: Software Development"
"Topic :: Software Development",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers"
]

[project.urls]
Expand Down

0 comments on commit 3b72482

Please sign in to comment.