From 48b4a2c7ba69a4334e1c216792d8c6629247e14b Mon Sep 17 00:00:00 2001 From: Wim Pomp Date: Wed, 16 Oct 2024 17:16:58 +0200 Subject: [PATCH] - commit before upload to crates.io --- .gitignore | 1 + Cargo.toml | 6 ++++++ pyproject.toml | 5 +++++ 3 files changed, 12 insertions(+) diff --git a/.gitignore b/.gitignore index cb58d10..827b324 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /Cargo.lock /foo.tif *.so +__pycache__ diff --git a/Cargo.toml b/Cargo.toml index 4347e1f..60a450f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,12 @@ name = "tiffwrite" version = "2024.10.5" edition = "2021" +authors = ["Wim Pomp "] +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] name = "tiffwrite" diff --git a/pyproject.toml b/pyproject.toml index 7bddf15..4c7eca8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,6 +6,11 @@ build-backend = "maturin" name = "tiffwrite" dynamic = ["version"] 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" classifiers = [ "Programming Language :: Rust",