-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 879 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 879 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
36
37
38
39
40
[project]
name = "syncseal"
version = "0.1.0"
description = "Self-contained image watermark synchronization (models + evals)"
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "FAIR, Meta Superintelligence Labs" }]
keywords = ["watermarking", "synchronization", "computer-vision", "deep-learning"]
dependencies = [
"torch",
"omegaconf",
"einops",
"lpips",
"timm==0.9.16",
"scikit-image",
"pandas",
"tqdm",
"pytorch_msssim",
"tensorboard",
"pycocotools",
"opencv-python",
"scipy",
"ipykernel",
"matplotlib",
"loguru",
"torchmetrics>=1.8.2",
]
[project.urls]
"Repository" = "https://github.com/facebookresearch/wmar/tree/main/syncseal"
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["syncseal*"]
exclude = ["notebooks*"]