Skip to content

Commit

Permalink
[Hotfix] Added isort, black, flake8 and tox to dev dependencies
Browse files Browse the repository at this point in the history
Introduced optional dev dependencies, which aren't needed for
installing the base functionality.
  • Loading branch information
tbkr committed Dec 17, 2024
1 parent fc0dc38 commit ebc6ba5
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,21 @@ requires-python = ">=3.9"
dependencies = [
"cffi",
"findlibs",
"isort",
"black",
"flake8",
"tox>=4.19",
"eccodes"
]

[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-flakes"
"pytest-flakes",
]

dev = [
"tox>=4.19",
"isort",
"black",
"flake8",
]

[tool.setuptools.packages.find]
Expand Down

0 comments on commit ebc6ba5

Please sign in to comment.