use dev dependencies directly

This commit is contained in:
Istvan Ruzman
2022-02-21 20:31:38 +01:00
parent 9b75e69378
commit 51b351ce3e

View File

@@ -10,6 +10,7 @@ description = "RADIUS tools"
requires-python = ">=3.8" requires-python = ">=3.8"
keywords = ["AAA", "authentication", "authorization", "accounting", "RADIUS"] keywords = ["AAA", "authentication", "authorization", "accounting", "RADIUS"]
authors = [{name = "Istvan Ruzman", email = "istvan@ruzman.eu"}] authors = [{name = "Istvan Ruzman", email = "istvan@ruzman.eu"}]
license = {file = "LICENSE-MIT"}
classifiers = [ classifiers = [
"Development Status :: 4 - Beta", "Development Status :: 4 - Beta",
"Intended Audience :: Developers", "Intended Audience :: Developers",
@@ -34,16 +35,14 @@ repository = "https://github.com/pyradius/pyrad3"
[project.optional-dependencies] [project.optional-dependencies]
dev = [ dev = [
"black >= 22.1",
"bandit >= 1.7", "bandit >= 1.7",
"black >= 22.1",
"flake8 >= 4.0",
"isort >= 5.10",
"pep8-naming >= 0.12", "pep8-naming >= 0.12",
"pylint >= 2.12",
"pytest >= 7", "pytest >= 7",
"pytest-black >= 0.3.10",
"pytest-cov >= 3.0", "pytest-cov >= 3.0",
"pytest-flake8 >= 1.0",
"pytest-isort >= 3.0",
"pytest-mypy >= 0.9",
"pytest-pylint >= 1.1.2",
] ]