Skip to content

Commit

Permalink
fix extra dependency definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
bckohan committed Dec 19, 2023
1 parent c45c5bc commit 361eba4
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,11 @@ pillow = "^10.1.0"
selenium = "^4.16.0"
webdriver-manager = "^4.0.1"

[tool.poetry.extras]
html = ["selenium", "webdriver-manager"]
pdf = ["cairosvg", "lxml", "tinycss2", "cssselect2"]
png = ["selenium", "webdriver-manager", "pillow"]

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
Expand Down Expand Up @@ -129,7 +134,3 @@ line_length = 79
[tool.doc8]
max-line-length = 100

[tool.poetry.extras]
html = ["selenium", "webdriver-manager"]
pdf = ["cairosvg", "lxml", "tinycss2", "cssselect2"]
html = ["selenium", "webdriver-manager", "pillow"]

0 comments on commit 361eba4

Please sign in to comment.