Skip to content
This repository was archived by the owner on Nov 1, 2024. It is now read-only.

Commit 79785e4

Browse files
authored
Setup.py update for multimodal work (#677)
* update setup.py from uriels PR #668 * add comment for installing extras
1 parent 7cad4c9 commit 79785e4

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

setup.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ def do_setup(package_data):
180180
]
181181
),
182182
extras_require={
183+
# install via: pip install -e ".[dev]"
183184
"dev": [
184185
"flake8",
185186
"black==22.3.0",
@@ -189,7 +190,17 @@ def do_setup(package_data):
189190
"pyarrow",
190191
"boto3",
191192
"pandas",
192-
]
193+
],
194+
# install via: pip install -e ".[multimodal]"
195+
"multimodal": [
196+
"albumentations",
197+
"dalle_pytorch",
198+
"einops",
199+
"matplotlib",
200+
"pytorchvideo==0.1.5",
201+
"wandb",
202+
"webdataset==0.1.103",
203+
],
193204
},
194205
package_data=package_data,
195206
ext_modules=extensions,

0 commit comments

Comments
 (0)