From e4d462a64dc17fcf3f7bb13279f0dce81c1bf077 Mon Sep 17 00:00:00 2001
From: Davide Canton <davide.canton5@gmail.com>
Date: Mon, 16 Sep 2024 16:06:58 +0200
Subject: [PATCH] fixed setup

---
 setup.cfg | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/setup.cfg b/setup.cfg
index 7a56379..e3aae25 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -18,9 +18,9 @@ include = pytest_suggest*
 
 [options.extras_require]
 dev =
-pytest-cov >=4.0.0
-build
-tox
+    pytest-cov >=4.0.0
+    build
+    tox
 
 # code coverage configuration
 # refer to https://coverage.readthedocs.io/en/latest/config.html
@@ -32,14 +32,14 @@ source = .
 
 [coverage:report]
 include =
-pytest_suggest/**
+    pytest_suggest/**
 
 [coverage:html]
 directory = coverage
 
 [options.entry_points]
 console_scripts =
-pytest-suggest = pytest_suggest.cli.suggest:main
+    pytest-suggest = pytest_suggest.cli.suggest:main
 
 pytest11 =
-suggest = pytest_suggest.plugin
+    suggest = pytest_suggest.plugin