From 14829f3d5bf5aed81d5cf80a2dce4bcab1f45047 Mon Sep 17 00:00:00 2001 From: Ivan Mincik Date: Thu, 30 Jul 2026 11:18:32 +0200 Subject: [PATCH] Make the project name consistent with repository and package name This change is motivated based on downstream packaging in Nixpkgs where we check consistency of python metadata and package name. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1aeab9e..0abe4bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["setuptools>=61.0", "wheel"] build-backend = "setuptools.build_meta" [project] -name = "stac_valid" +name = "stac_validator" version = "4.5.0" description = "A package to validate STAC files" authors = [ @@ -73,4 +73,4 @@ stac-validator = "stac_validator.stac_validator:cli" stac-valid = "stac_validator.stac_validator:cli" [tool.setuptools.package-data] -stac_validator = ["*.yaml"] \ No newline at end of file +stac_validator = ["*.yaml"]