From 714b55b9e5538a7ea2ed2507b3678518f6587206 Mon Sep 17 00:00:00 2001 From: Robert Abram Date: Sat, 17 Jan 2026 15:38:20 -0600 Subject: [PATCH] project.toml fixes --- pyproject.toml | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1a3acb2..cc33196 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,21 +3,19 @@ requires = ["setuptools >= 77.0.3"] build-backend = "setuptools.build_meta" [project] -name="python-easy-json" -version="1.2.4" -python_requires=">=3.7" -license="MIT" -description="A simple, yet powerful, JSON/python dictionary to object deserialization" +name = "python-easy-json" +version = "1.2.4" +requires-python = ">= 3.9" +license = "MIT" +description = "A simple, yet powerful, JSON/python dictionary to object deserialization" authors = [ { name = "Robert Abram", email = "rabram991@gmail.com" }, ] -dependencies = [ "dateutils", ] -requires-python = ">= 3.9" -readme="README.rst" -classifiers=[ +dependencies = ["dateutils", ] +readme = "README.rst" +classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", - "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -26,7 +24,7 @@ classifiers=[ "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.14", ] -keywords=[ +keywords = [ "serialization", "rest", "json",