chore: specify dev dependencies in setup.cfg

This commit is contained in:
missytake 2024-08-19 12:32:46 +02:00
parent f3daeee8d9
commit 5d9705d244
Signed by: missytake
GPG key ID: 04CC6658320518DF
2 changed files with 9 additions and 2 deletions

View file

@ -103,7 +103,6 @@ run:
``` ```
python3 -m venv venv python3 -m venv venv
. venv/bin/activate . venv/bin/activate
pip install pytest tox black pytest-xdist pytest-timeout pip install -e .[dev]
pip install -e .
tox tox
``` ```

View file

@ -26,6 +26,14 @@ install_requires =
qrcode qrcode
deltachat>=1.136.2 deltachat>=1.136.2
[options.extras_require]
dev =
pytest
tox
black
pytest-xdist
pytest-timeout
[options.packages.find] [options.packages.find]
where = src where = src