From e77107fb0dd073fa362c0c106def1038ed4289d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Rasmusson?= Date: Sun, 14 Jan 2024 20:11:17 +0100 Subject: [PATCH] Move optional dependencies to pyproject.toml --- python/pyproject.toml | 3 +++ python/setup.cfg | 4 ---- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index abeea602..b3ec2cf6 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -40,6 +40,9 @@ version = "10.0.0" [project.scripts] +[project.optional-dependencies] +test = ["tox"] + [tool.black] line-length = 120 target-version = ["py38", "py39", "py310", "py311"] diff --git a/python/setup.cfg b/python/setup.cfg index f10d19a1..9e8628ec 100644 --- a/python/setup.cfg +++ b/python/setup.cfg @@ -9,7 +9,3 @@ where = src [options.package_data] ci_environment = CiEnvironments.json - -[options.extras_require] -test = - tox