-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 810 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 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
35
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "blossom"
version = "1.0.0"
description = "A framework for multimodal federated learning"
requires-python = ">=3.11"
dependencies = [
# Framework dependencies
"flwr[simulation]==1.17.0",
"flwr-datasets==0.5.0",
"numpy==2.2.4",
"pandas==2.2.3",
"torch==2.8.0",
"datasets==3.1.0",
"huggingface-hub==0.29.3",
"matplotlib==3.10.1",
"hydra-core==1.3.2",
"omegaconf==2.3.0",
"rich==13.9.4",
# Benchmark dependencies
"pillow==11.1.0",
"transformers==4.50.3",
"torchvision==0.23.0",
"torchaudio==2.8.0",
"torchmultimodal-nightly==2024.4.1",
"librosa==0.11.0",
"soundfile==0.13.1"
]
[tool.setuptools]
packages = ["blossom"]