-
Notifications
You must be signed in to change notification settings - Fork 422
/
pyproject.toml
72 lines (63 loc) · 1.7 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
[project]
name = "stable_diffusion_videos"
description = "Create 🔥 videos with Stable Diffusion by exploring the latent space and morphing between text prompts."
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Nathan Raw", email = '[email protected]'},
]
dynamic = [
"version",
]
dependencies = [
"transformers>=4.21.0",
"diffusers",
"scipy",
"fire",
"gradio",
"librosa",
"av<10.0.0",
"realesrgan",
"protobuf==3.20.*",
"fsspec>=2023.4.0",
]
[project.urls]
Source = "https://github.com/nateraw/stable-diffusion-videos"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "stable_diffusion_videos.__version__"}
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["stable_diffusion_videos*"] # package names should match these glob patterns (["*"] by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
[build-system]
requires = [
"setuptools",
"wheel",
]
[tool.pytest.ini_options]
addopts = [
"--color=yes"
]
[tool.ruff]
target-version = "py38"
line-length = 79
# Enable Pyflakes `E` and `F` codes by default.
lint.select = [
"E",
"W", # see: https://pypi.org/project/pycodestyle
"F", # see: https://pypi.org/project/pyflakes
"I", #see: https://pypi.org/project/isort/
"RUF100" # alternative to yesqa
]
lint.ignore-init-module-imports = true
lint.unfixable = ["F401"]
[tool.ruff.pydocstyle]
# Use Google-style docstrings.
convention = "google"
[tool.ruff.pycodestyle]
ignore-overlong-task-comments = true
[tool.ruff.lint.mccabe]
# Unlike Flake8, default to a complexity level of 10.
max-complexity = 10