From 22cf9256f8b94c5ffb89c83db3ef98ad085cbc74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=ADle=20Ekaterin=20Liszka?= Date: Sun, 14 Jan 2024 02:11:04 -0800 Subject: [PATCH] pyproject.toml: move test req to optional dep --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 59b7711..a341662 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,10 +7,7 @@ authors = [ description = 'A library for manipulating eXtra BootConfig (XBC) files' readme = 'README.md' keywords = ['bootconfig', 'xbc', 'configuration'] -dependencies = [ - 'pyparsing', - 'pytest' -] +dependencies = ['pyparsing'] requires-python = '>=3.7' classifiers = [ 'Development Status :: 3 - Alpha', @@ -31,6 +28,9 @@ classifiers = [ Homepage = 'https://gitea.treehouse.systems/VulpineAmethyst/py-xbc' Issues = 'https://gitea.treehouse.systems/VulpineAmethyst/py-xbc/issues' +[project.optional-dependencies] +test = ['pytest'] + [build-system] requires = ["setuptools>=61.0"] build-backend = "setuptools.build_meta"