-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
73 lines (67 loc) · 2.04 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "tryoffdiff"
version = "0.0.1"
description = "The source code of the paper: \"TryOffDiff: Virtual-Try-Off via High-Fidelity Garment Reconstruction using Diffusion Models\""
authors = [{name = "Riza Velioglu", email = "[email protected]"}]
maintainers = [{name = "Riza Velioglu", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["diffusion", "image-to-image", "I2I", "unet", "stable-diffusion", "virtual-try-on", "virtual-try-off", "fashion", "e-commerce"]
classifiers = [
"Programming Language :: Python :: 3",
]
requires-python = "~=3.11"
dependencies = [
"torch>=2.4.0",
"torchvision>=0.19.0",
"diffusers>=0.29.2",
"transformers>=4.37.2",
"sentencepiece>=0.2.0",
"matplotlib>=3.9.1",
"tqdm>=4.66.4",
"accelerate>=1.0.1",
"pillow>=10.4.0",
"tensorboard>=2.17.0",
"loguru>=0.7.2",
"pre-commit>=3.8.0",
"typer>=0.12.3",
"torchmetrics>=1.4.1",
"pyiqa>=0.1.13",
"dists-pytorch>=0.1",
"clean-fid>=0.1.35",
]
[project.optional-dependencies]
dev = [
"CLIP @ git+https://github.com/openai/CLIP",
"clean-fid>=0.1.35",
"pyssim>=0.7",
"DISTS-pytorch>=0.1",
]
[project.urls]
Homepage = "https://rizavelioglu.github.io/tryoffdiff"
Repository = "https://github.com/rizavelioglu/tryoffdiff/"
Issues = "https://github.com/rizavelioglu/tryoffdiff/issues/"
[tool.ruff]
line-length = 120 # Allow lines to be as long as 120.
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
ignore = [
"E501", # line too long, handled by black
"B008", # do not perform function calls in argument defaults
"C901", # too complex
"W191", # indentation contains tabs
]
[tool.ruff.lint.isort]
known-first-party = ["tryoffdiff"]
force-sort-within-sections = true