From c58c1527ef54616b33149f39fd23104214f410dd Mon Sep 17 00:00:00 2001 From: "Andrew S. Rosen" Date: Wed, 8 May 2024 23:20:49 -0700 Subject: [PATCH] Add support for `pip install covalent[cloud]` Pretty self-explanatory. I added support for `pip install covalent[cloud]` in `setup.py`. I wasn't sure what the minimum viable version for `covalent-cloud` was so didn't put any `>=` version range. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 317a469c7..a6fee8864 100644 --- a/setup.py +++ b/setup.py @@ -216,6 +216,7 @@ def find_sources(self): "aws": ["boto3>=1.20.48"], "azure": ["azure-identity>=1.13.0", "azure-storage-blob>=12.16.0"], "braket": ["amazon-braket-pennylane-plugin>=1.17.4", "boto3>=1.28.5"], + "cloud": ["covalent-cloud"], "gcp": ["google-auth>=2.16.2", "google-cloud-storage>=2.7.0"], "mysql": ["mysqlclient>=2.1.1"], "postgres": ["psycopg2-binary>=2.9.5"],