From 6fd2476050e4eae5ea07955d0204c8a1ab55be8a Mon Sep 17 00:00:00 2001 From: Russell Martin Date: Fri, 20 Sep 2024 14:08:36 -0400 Subject: [PATCH] Update pyproject.toml for style and current state --- pyproject.toml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6f7cb3e..bd7c1e1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,13 +1,13 @@ [build-system] -requires = ["setuptools>=60"] +requires = ["setuptools >= 60"] build-backend = "setuptools.build_meta" [project] name = "mobile-forge" -version = "2023.0.0" +version = "2024.0.0" description = "A tool to manage building cross-platform binary wheels for mobile devices" readme = { file = "README.md", content-type = "text/x-rst"} -requires-python = ">=3.8" +requires-python = ">=3.9" license = { file = "LICENSE" } authors = [ {name = "Russell Keith-Magee", email = "russell@keith-magee.com"} @@ -20,7 +20,6 @@ classifiers = [ "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", @@ -38,12 +37,12 @@ dependencies = [ "packaging == 24.1", "PyYAML == 6.0.2", "tomli >= 2.0,< 3.0; python_version <= '3.10'", - "wheel==0.44.0", + "wheel == 0.44.0", ] [project.optional-dependencies] dev = [ - "pre-commit==3.8.0", + "pre-commit == 3.8.0", ] [project.urls]