From d4d4d8f7282aca481e956072359fd4b8d5b5d1fc Mon Sep 17 00:00:00 2001 From: Mike Taves Date: Mon, 8 Jun 2026 12:45:18 +1200 Subject: [PATCH] MNT: several updates to pyproject.toml, ignore uv.lock --- .gitignore | 3 +++ pyproject.toml | 9 +++------ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 0951de11..9b8fc6c0 100644 --- a/.gitignore +++ b/.gitignore @@ -83,6 +83,9 @@ celerybeat-schedule # dotenv .env +# uv env +uv.lock + # virtualenv .venv venv/ diff --git a/pyproject.toml b/pyproject.toml index e247c7e0..690e208a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,12 +15,12 @@ keywords = [ "rasterio", ] readme = "README.rst" -license = {text = "Apache"} +license = "Apache-2.0" +license-files = ["LICENSE*", "AUTHORS.rst"] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Natural Language :: English", - "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Topic :: Scientific/Engineering :: GIS", "Programming Language :: Python", @@ -78,7 +78,7 @@ changelog = "https://corteva.github.io/rioxarray/stable/history.html" [tool.setuptools.packages.find] include = ["rioxarray", "rioxarray.*"] -[options.package_data] +[tool.setuptools.package-data] rioxarray = [ "py.typed", ] @@ -93,6 +93,3 @@ interp = [ all = [ "scipy" ] - -[tool.black] -target_version = ["py310"]