pyproject.toml: move test req to optional dep
parent
2a651deb79
commit
22cf9256f8
|
@ -7,10 +7,7 @@ authors = [
|
||||||
description = 'A library for manipulating eXtra BootConfig (XBC) files'
|
description = 'A library for manipulating eXtra BootConfig (XBC) files'
|
||||||
readme = 'README.md'
|
readme = 'README.md'
|
||||||
keywords = ['bootconfig', 'xbc', 'configuration']
|
keywords = ['bootconfig', 'xbc', 'configuration']
|
||||||
dependencies = [
|
dependencies = ['pyparsing']
|
||||||
'pyparsing',
|
|
||||||
'pytest'
|
|
||||||
]
|
|
||||||
requires-python = '>=3.7'
|
requires-python = '>=3.7'
|
||||||
classifiers = [
|
classifiers = [
|
||||||
'Development Status :: 3 - Alpha',
|
'Development Status :: 3 - Alpha',
|
||||||
|
@ -31,6 +28,9 @@ classifiers = [
|
||||||
Homepage = 'https://gitea.treehouse.systems/VulpineAmethyst/py-xbc'
|
Homepage = 'https://gitea.treehouse.systems/VulpineAmethyst/py-xbc'
|
||||||
Issues = 'https://gitea.treehouse.systems/VulpineAmethyst/py-xbc/issues'
|
Issues = 'https://gitea.treehouse.systems/VulpineAmethyst/py-xbc/issues'
|
||||||
|
|
||||||
|
[project.optional-dependencies]
|
||||||
|
test = ['pytest']
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["setuptools>=61.0"]
|
requires = ["setuptools>=61.0"]
|
||||||
build-backend = "setuptools.build_meta"
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
Loading…
Reference in New Issue