-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 822 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 822 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
[tool.poetry]
name = "simplediffusion"
version = "0.1.0"
description = ""
#authors = ["Your Name <you@example.com>"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
pytorch-lightning = "^1.8.3"
torchmetrics = "^0.11.4"
datasets = "^2.18.0"
transformers = "4.30.2"
diffusers = "^0.20.0"
torch = { version = "2.0.1", source="torch"}
torchvision = { version = "0.15.2", source="torch"}
opencv-python = "^4.9.0.80"
tensorboard = "^2.16.2"
ruff = "^0.4.8"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "torch"
url = "https://download.pytorch.org/whl/cu118/"
priority = "supplemental"
[[tool.poetry.source]]
name = "mirrors"
url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
priority = "primary"