Skip to content

Commit 1b4d7ba

Browse files
committed
Make jatic-toolbox an optional dependency
1 parent 76446f2 commit 1b4d7ba

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

examples/pyproject.toml

+10-6
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ dependencies = []
2020
charmory = "charmory_examples.cifar_example:main"
2121

2222
[project.optional-dependencies]
23-
armory = ["albumentations", "armory-library @ {root:uri}/../", "lightning"]
23+
armory = [
24+
"albumentations",
25+
"armory-library @ {root:uri}/../",
26+
]
2427

2528
developer = [
2629
"hatch", # build tool
@@ -30,22 +33,23 @@ developer = [
3033
"flake8",
3134
]
3235

33-
jatic = [
34-
"jatic_toolbox @ git+ssh://git@gitlab.jatic.net/jatic/cdao/jatic-toolbox.git@v0.2.0rc1",
35-
# HuggingFace
36+
huggingface = [
3637
"datasets",
3738
"huggingface_hub",
3839
"transformers",
3940
"yolov5",
4041
]
4142

42-
demo = ["pandas", "sklearn", "plotly", "numpy", "matplotlib", "seaborn"]
43+
jatic = [
44+
"jatic_toolbox @ git+ssh://git@gitlab.jatic.net/jatic/cdao/jatic-toolbox.git@v0.2.0rc1",
45+
]
4346

47+
demo = ["pandas", "sklearn", "plotly", "numpy", "matplotlib", "seaborn"]
4448

4549
all = [
4650
"armory-examples[armory]",
4751
"armory-examples[developer]",
48-
"armory-examples[jatic]",
52+
"armory-examples[huggingface]",
4953
]
5054

5155
[build-system]

0 commit comments

Comments
 (0)