-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (41 loc) · 1014 Bytes
/
pyproject.toml
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
47
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "fedpredict"
version = "0.0.8"
authors = [
{ name="Cláudio G. S. Capanema", email="claudiogs.capanema@gmail.com" },
]
description = "FedPredict is a personalization plugin for Federated Learning methods."
readme = "README.md"
requires-python = ">=3.7"
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.20",
"scipy>=1.5",
]
[project.optional-dependencies]
torch = [
"torch>=2.2.0"
]
tf = [
"tensorflow>=2.12"
]
flwr = [
"flwr>=1.7.0"
]
full = [
"torch>=2.2.0",
"tensorflow>=2.12",
"flwr>=1.7.0"
]
[project.urls]
homepage = "https://github.com/claudiocapanema/fedpredict"
documentation = "https://claudiocapanema.github.io/fedpredict/"
[tool.setuptools.packages.find]
include = ['fedpredict', 'fedpredict.utils', 'fedpredict.utils.compression_methods']