- commit before upload to crates.io

This commit is contained in:
Wim Pomp
2024-10-16 17:16:58 +02:00
parent eea72dfba9
commit 48b4a2c7ba
3 changed files with 12 additions and 0 deletions

1
.gitignore vendored
View File

@@ -8,3 +8,4 @@
/Cargo.lock /Cargo.lock
/foo.tif /foo.tif
*.so *.so
__pycache__

View File

@@ -2,6 +2,12 @@
name = "tiffwrite" name = "tiffwrite"
version = "2024.10.5" version = "2024.10.5"
edition = "2021" edition = "2021"
authors = ["Wim Pomp <w.pomp@nki.nl>"]
license = "GPLv3"
description = "Write BioFormats/ImageJ compatible tiffs with zstd compression in parallel."
homepage = "https://github.com/wimpomp/tiffwrite"
repository = "https://github.com/wimpomp/tiffwrite"
readme = "README.md"
[lib] [lib]
name = "tiffwrite" name = "tiffwrite"

View File

@@ -6,6 +6,11 @@ build-backend = "maturin"
name = "tiffwrite" name = "tiffwrite"
dynamic = ["version"] dynamic = ["version"]
authors = [{ name = "Wim Pomp", email = "w.pomp@nki.nl" }] authors = [{ name = "Wim Pomp", email = "w.pomp@nki.nl" }]
license = "GPLv3"
description = "Write BioFormats/ImageJ compatible tiffs with zstd compression in parallel."
homepage = "https://github.com/wimpomp/tiffwrite"
repository = "https://github.com/wimpomp/tiffwrite"
readme = "README.md"
requires-python = ">=3.10" requires-python = ">=3.10"
classifiers = [ classifiers = [
"Programming Language :: Rust", "Programming Language :: Rust",