Skip to content

Commit

Permalink
add requirement for seaborn
Browse files Browse the repository at this point in the history
  • Loading branch information
AgentDS committed Jan 21, 2024
1 parent 49cf058 commit 0cd10c7
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 25 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ pynvml
tqdm
scikit-learn
munch
seaborn

torch>=1.7.1
torchvision>=0.8.2
51 changes: 26 additions & 25 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,33 +12,34 @@
version=fedlab.__version__,
keywords=["federated learning", "deep learning", "pytorch"],
author="Dun Zeng, Siqi Liang, Xiangjing Hu",
author_email=
"zengdun.cs@gmail.com, zszxlsq@gmail.com, starryhu@foxmail.com",
author_email="zengdun.cs@gmail.com, zszxlsq@gmail.com, starryhu@foxmail.com",
maintainer="Dun Zeng, Siqi Liang, Xiangjing Hu",
maintainer_email=
"zengdun.cs@gmail.com, zszxlsq@gmail.com, starryhu@foxmail.com",
description=
"A flexible Federated Learning Framework based on PyTorch, simplifying your Federated Learning research.",
maintainer_email="zengdun.cs@gmail.com, zszxlsq@gmail.com, starryhu@foxmail.com",
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",
)

0 comments on commit 0cd10c7

Please sign in to comment.