forked from apple/ml-4m
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (48 loc) · 1.18 KB
/
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
48
49
50
51
52
53
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "fourm"
version = "1.0.0"
description = "Massively Multimodal Masked Modeling"
requires-python = ">=3.8"
readme = {file = "README.md", content-type = "text/markdown"}
dependencies = [
"torch>=2.1.0",
"torchvision>=0.16.0",
"albumentations>=1.4.0",
"boto3>=1.26.16",
"braceexpand>=0.1.7",
"diffusers==0.20.0",
"einops>=0.7.0",
"ftfy==6.1.0",
"huggingface_hub==0.25.0",
"matplotlib>=3.6.2",
"numpy>=1.26.4",
"opencv_python>=4.9.0.80",
"opencv_python_headless>=4.6.0.66",
"pandas>=1.5.2",
"Pillow>=9.3.0",
"PyYAML>=6.0",
"regex>=2022.10.31",
"Requests>=2.31.0",
"scikit_learn>=1.1.3",
"setuptools>=61.0",
"tokenizers>=0.15.2",
"datasets>=0.17",
"torchmetrics>=1.3.1",
"tqdm>=4.64.1",
"wandb>=0.13.5",
"webdataset>=0.2.86",
"jsonlines",
]
[project.optional-dependencies]
fast = [
"xformers>=0.0.24",
]
[project.urls]
"Homepage" = "https://4m.epfl.ch"
[tool.setuptools.packages.find]
exclude = ["cfgs*", "assets*", "notebooks*"]
[tool.wheel]
exclude = ["cfgs*", "assets*", "notebooks*"]