diff --git a/README.md b/README.md index 38ce2a9..9c97f49 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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 | | @@ -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" } } ~~~~~~~~~~~~~~~ diff --git a/pyproject.toml b/pyproject.toml index 1cc43e9..d8e8918 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,9 +4,9 @@ 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"}] @@ -14,7 +14,7 @@ description = "Image IO APIs for wide range image formats (jpg, png, tif, dng, b 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", @@ -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]