-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 810 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 810 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "federated-analytics"
version = "1.0.0"
description = "Federated Health Analytics with Pandas and Flower"
license = "Apache-2.0"
authors = [
{ name = "The Flower Authors", email = "hello@flower.ai" },
]
dependencies = [
"flwr>=1.27.0",
"pandas==2.3.3",
"SQLAlchemy==2.0.45",
"psycopg[binary]==3.3.2",
]
[tool.hatch.build.targets.wheel]
packages = ["."]
[tool.flwr.app]
publisher = "flwrlabs"
[tool.flwr.app.components]
serverapp = "federated_analytics.server_app:app"
clientapp = "federated_analytics.client_app:app"
[tool.flwr.app.config]
num-server-rounds = 1
fraction-sample = 1.0
selected-features = "age,bmi,systolic_bp,diastolic_bp,ldl_cholesterol,hba1c"
feature-aggregation = "mean,std"