-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathsetup.py
46 lines (43 loc) · 1.57 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup, find_packages
from codecs import open
from os import path
from os import path as os_path
import fedlab
this_directory = os_path.abspath(os_path.dirname(__file__))
setup(
name="fedlab",
version=fedlab.__version__,
keywords=["federated learning", "deep learning", "pytorch"],
author="Dun Zeng, Siqi Liang, Xiangjing Hu",
maintainer="Dun Zeng, Siqi Liang, Xiangjing Hu",
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",
"seaborn",
"matplotlib",
],
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",
],
test_suite="tests.get_tests",
)