Skip to content

Commit

Permalink
refactor pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
mozman committed Mar 2, 2024
1 parent 21962e5 commit 56650ad
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,27 +54,27 @@ classifiers=[


[project.optional-dependencies]
# use PyQT5 (draw5/dev5) only when PySide6 is not available
draw = ["matplotlib", "PySide6", "PyMuPDF>=1.20.0", "Pillow"]
draw5 = ["matplotlib", "PyQt5", "PyMuPDF>=1.20.0", "Pillow"]
# use PyQt5 (draw5/dev5) only when PySide6 is not available
draw = ["PySide6", "matplotlib", "PyMuPDF>=1.20.0", "Pillow"]
draw5 = ["PyQt5", "matplotlib", "PyMuPDF>=1.20.0", "Pillow"]
dev = [
"PySide6",
"setuptools",
"wheel",
"Cython",
"pytest",
"Pillow",
"matplotlib",
"PySide6",
"PyMuPDF>=1.20.0",
]
dev5 = [
"PyQt5",
"setuptools",
"wheel",
"Cython",
"pytest",
"Pillow",
"matplotlib",
"PyQt5",
"PyMuPDF>=1.20.0"
]

Expand Down

0 comments on commit 56650ad

Please sign in to comment.