From 5d9705d244b0af3d796e1acbf14f07a10bc5c909 Mon Sep 17 00:00:00 2001 From: missytake Date: Mon, 19 Aug 2024 12:32:46 +0200 Subject: [PATCH] chore: specify dev dependencies in setup.cfg --- README.md | 3 +-- setup.cfg | 8 ++++++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 51bfcc9..6e2cbd0 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,6 @@ run: ``` python3 -m venv venv . venv/bin/activate -pip install pytest tox black pytest-xdist pytest-timeout -pip install -e . +pip install -e .[dev] tox ``` diff --git a/setup.cfg b/setup.cfg index fbbbd85..6c3b9e5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -26,6 +26,14 @@ install_requires = qrcode deltachat>=1.136.2 +[options.extras_require] +dev = + pytest + tox + black + pytest-xdist + pytest-timeout + [options.packages.find] where = src