pyproject.toml: move test req to optional dep

current
Síle Ekaterin Liszka 2024-01-14 02:11:04 -08:00
parent 2a651deb79
commit 22cf9256f8
Signed by: VulpineAmethyst
SSH Key Fingerprint: SHA256:VcHwQ6SUfi/p0Csfxe3SabX/TImWER0PhoJqkt+GlmE
1 changed files with 4 additions and 4 deletions

View File

@ -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"