-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (53 loc) · 1.39 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (53 loc) · 1.39 KB
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
[tool.ruff]
line-length = 120
[tool.ruff.lint]
# Never enforce `E501` (line length violations).
ignore = ["C901", "E501", "E741", "F402", "F823"]
select = ["C", "E", "F", "I", "W"]
# Ignore import violations in all `__init__.py` files.
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402", "F401", "F403", "F811"]
[tool.ruff.lint.isort]
lines-after-imports = 2
known-first-party = ["stamo"]
[tool.ruff.format]
# Like Black, use double quotes for strings.
quote-style = "double"
# Like Black, indent with spaces, rather than tabs.
indent-style = "space"
# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false
# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "stamo"
version = "0.1.0"
description = ""
authors = [
{ name = "hello3x3", email = "shujiuhe@outlook.com" }
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy",
"torch",
"torchvision",
"tqdm==4.67.1",
"deepspeed==0.14.4",
"einops==0.8.1",
"jsonlines==4.0.0",
"lightning==2.2.1",
"lightning-cloud==0.5.70",
"diffusers==0.34.0",
"timm==1.0.19",
"omegaconf==2.3.0",
"tensorboard==2.20.0",
"accelerate==1.10.0",
"ruff==0.13.1",
"imageio[ffmpeg]"
]
[tool.setuptools.packages.find]
where = ["."]