Skip to content

Commit

Permalink
Setup.py update for multimodal work (#677)
Browse files Browse the repository at this point in the history
* update setup.py from uriels PR #668

* add comment for installing extras
  • Loading branch information
suchenzang committed Mar 12, 2023
1 parent 7cad4c9 commit 79785e4
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ def do_setup(package_data):
]
),
extras_require={
# install via: pip install -e ".[dev]"
"dev": [
"flake8",
"black==22.3.0",
Expand All @@ -189,7 +190,17 @@ def do_setup(package_data):
"pyarrow",
"boto3",
"pandas",
]
],
# install via: pip install -e ".[multimodal]"
"multimodal": [
"albumentations",
"dalle_pytorch",
"einops",
"matplotlib",
"pytorchvideo==0.1.5",
"wandb",
"webdataset==0.1.103",
],
},
package_data=package_data,
ext_modules=extensions,
Expand Down

0 comments on commit 79785e4

Please sign in to comment.