From: TizenOpenSource Date: Mon, 11 Mar 2024 01:55:36 +0000 (+0900) Subject: Fix build error for setuptools 69.0.2 X-Git-Tag: accepted/tizen/base/20240328.042917^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2Ftizen_base;p=platform%2Fupstream%2Fpython3-pyproject_hooks.git Fix build error for setuptools 69.0.2 Change-Id: I5f01a0572122fe20d8713dc74692b8ffe5c4df18 Signed-off-by: TizenOpenSource --- diff --git a/pyproject.toml b/pyproject.toml index 5133b07..0cb31c9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,9 +9,6 @@ authors = [ ] readme = "README.rst" requires-python = ">=3.7" -dependencies = [ - "tomli >=1.1.0 ; python_version<'3.11'", -] classifiers = [ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", @@ -19,6 +16,11 @@ classifiers = [ ] dynamic = ["version", "description"] +[project.optional-dependencies] +all = [ + "tomli >=1.1.0 ; python_version<'3.11'", +] + [project.urls] Source = "https://github.com/pypa/pyproject-hooks" Documentation = "https://pyproject-hooks.readthedocs.io/"