forked from openvinotoolkit/anomalib
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* build: Refactor dependencies to avoid having opencv-python as a requirement * build: Update version and changelog
- Loading branch information
1 parent
1d05c54
commit d8448ec
Showing
5 changed files
with
42 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "anomalib-orobix" | ||
version = "0.7.0.dev140" | ||
version = "0.7.0.dev141" | ||
description = "Orobix anomalib fork" | ||
authors = [ | ||
"Intel OpenVINO <[email protected]>", | ||
|
@@ -26,10 +26,15 @@ omegaconf = "~2.3" | |
freia = "~0.2" | ||
wandb = "0.12.17" | ||
gradio = "3.0.2" | ||
imgaug = "0.4.0" | ||
line-profiler = "3.5.1" | ||
jsonargparse = { version = "~4.3.0", extras = ["signatures"] } | ||
|
||
imgaug = { version = "0.4.0", optional = true } | ||
|
||
[tool.poetry.extras] | ||
# We make imgaug optional as it requires opencv-python instead of the headless version | ||
augmentation = ["imgaug"] | ||
|
||
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | ||
# BLACK CONFIGURATION # | ||
[tool.black] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters