-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 792 Bytes
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 792 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
41
42
43
44
45
46
47
[project]
name = "diffusion-image-generation"
version = "0.1.0"
description = "Image generation using Diffusion models for the Convolutional Neural Networks course"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"accelerate>=1.6.0",
"datasets>=3.5.0",
"diffusers>=0.32.2",
"pytorch-lightning>=2.5.1",
"tokenizers>=0.21.1",
"torch>=2.6.0",
"torch-fidelity>=0.3.0",
"torchvision>=0.21.0",
"tqdm>=4.67.1",
"transformers>=4.50.3",
]
[dependency-groups]
dev = [
"pre-commit>=4.2.0",
]
[tool.setuptools]
py-modules = []
[tool.ruff]
line-length = 120
fix = true
select = [
"F",
"E",
"W",
"B",
"I",
]
ignore = [
"E501",
]
fixable = [
"I",
]
[tool.ruff.format]
indent-style = "space"
quote-style = "double"