From 87a1a05ecc18bd362cc4a18403142bccef2bb679 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Mon, 14 Apr 2025 00:09:35 +0200 Subject: [PATCH] fix: add SPDX license identifier --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4523b3f..a90b5b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,7 @@ [tool.poetry] name = "kasa-crypt" version = "0.6.1" +license = "Apache-2.0" description = "Fast kasa crypt" authors = ["J. Nick Koston "] readme = "README.md" @@ -11,7 +12,6 @@ classifiers = [ "Natural Language :: English", "Operating System :: OS Independent", "Topic :: Software Development :: Libraries", - "License :: OSI Approved :: Apache Software License", ] packages = [ { include = "kasa_crypt", from = "src" }, @@ -81,5 +81,5 @@ module = "tests.*" allow_untyped_defs = true [build-system] -requires = ['setuptools>=65.4.1', 'wheel', 'Cython>=3', "poetry-core>=1.0.0"] +requires = ['setuptools>=77.0', 'Cython>=3', "poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api"