-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
27 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ pynvml | |
tqdm | ||
scikit-learn | ||
munch | ||
seaborn | ||
|
||
torch>=1.7.1 | ||
torchvision>=0.8.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,33 +12,34 @@ | |
version=fedlab.__version__, | ||
keywords=["federated learning", "deep learning", "pytorch"], | ||
author="Dun Zeng, Siqi Liang, Xiangjing Hu", | ||
author_email= | ||
"[email protected], [email protected], [email protected]", | ||
author_email="[email protected], [email protected], [email protected]", | ||
maintainer="Dun Zeng, Siqi Liang, Xiangjing Hu", | ||
maintainer_email= | ||
"[email protected], [email protected], [email protected]", | ||
description= | ||
"A flexible Federated Learning Framework based on PyTorch, simplifying your Federated Learning research.", | ||
maintainer_email="[email protected], [email protected], [email protected]", | ||
description="A flexible Federated Learning Framework based on PyTorch, simplifying your Federated Learning research.", | ||
license="Apache-2.0 License", | ||
url="https://github.com/SMILELab-FL/FedLab", | ||
packages=find_packages(include=['fedlab','fedlab.*','LICENSE']), | ||
install_requires=['torch>=1.7.1', | ||
'torchvision>=0.8.2', | ||
'numpy', | ||
'pandas', | ||
'scikit-learn', | ||
'pynvml', | ||
'tqdm', | ||
'scikit-learn', | ||
'munch'], | ||
python_requires='>=3.6', | ||
packages=find_packages(include=["fedlab", "fedlab.*", "LICENSE"]), | ||
install_requires=[ | ||
"torch>=1.7.1", | ||
"torchvision>=0.8.2", | ||
"numpy", | ||
"pandas", | ||
"scikit-learn", | ||
"pynvml", | ||
"tqdm", | ||
"scikit-learn", | ||
"munch", | ||
"seaborn", | ||
], | ||
python_requires=">=3.6", | ||
classifiers=[ | ||
'Topic :: Scientific/Engineering', | ||
'Topic :: Scientific/Engineering :: Artificial Intelligence', | ||
'Topic :: Software Development', | ||
'Topic :: Software Development :: Libraries', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Programming Language :: Python :: 3' | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Artificial Intelligence", | ||
"Topic :: Software Development", | ||
"Topic :: Software Development :: Libraries", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python :: 3", | ||
], | ||
test_suite="tests.get_tests") | ||
test_suite="tests.get_tests", | ||
) |