From 32815d64b1d4d3504a4097cdb74dbceb78dcf95e Mon Sep 17 00:00:00 2001 From: "Shah, Karan" Date: Tue, 3 Dec 2024 15:17:55 +0530 Subject: [PATCH] Test reducing requirements Signed-off-by: Shah, Karan --- setup.py | 30 ++++++++++++------------------ 1 file changed, 12 insertions(+), 18 deletions(-) diff --git a/setup.py b/setup.py index 16fc7cad5f3..cba6d6ab3da 100644 --- a/setup.py +++ b/setup.py @@ -68,28 +68,22 @@ def run(self): url='https://github.com/securefederatedai/openfl', packages=find_packages(include=("openfl", "openfl.*", "openfl-docker", "openfl-workspace")), include_package_data=True, - setup_requires=['grpcio-tools>=1.56.2,<1.66.0'], + setup_requires=['grpcio-tools>=1.56.2,<1.66.0'], # ensure it is in-sync with `install_requires` install_requires=[ - 'Click==8.1.7', - 'PyYAML>=5.4.1', - 'cloudpickle', - 'cryptography>=3.4.6', - 'docker', - 'dynaconf==3.2.6', - 'flatten_json', - 'grpcio>=1.56.2,<1.66.0', - 'ipykernel', - 'jupyterlab', + 'click', + 'psutil', + 'pyyaml', + 'rich', + 'dynaconf', + 'tqdm', 'numpy', + 'cloudpickle', + 'cryptography', 'pandas', - 'protobuf>=4.22,<6.0.0', - 'pyzmq<=26.2.0', - 'requests>=2.32.0', - 'rich', 'scikit-learn', - 'tensorboard', - 'tensorboardX>=2.6', - 'tqdm', + 'flatten_json', + 'protobuf>=4.22,<6.0.0', + 'grpcio>=1.56.2,<1.66.0', ], python_requires='>=3.8, <3.12', project_urls={