-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
56 lines (46 loc) · 1.39 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
[tool.poetry]
name = "encode-scripts"
version = "0.0.0"
description = "Vapoursynth scripts"
authors = ["DeadNews <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.12"
vapoursynth = "^70"
dnfunc = "^0.1.0"
pyyaml = "^6.0.2"
[tool.poetry.group.lint.dependencies]
ruff = "^0.8.3"
[tool.poetry.group.runtime.dependencies]
vspreview = "^0.10.1"
numpy = "^2.2.0"
[tool.pyright]
typeCheckingMode = "off"
[tool.ruff]
line-length = 99
target-version = "py311" # Until Poetry v2
[tool.ruff.format]
line-ending = "lf"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"COM812", # Trailing comma missing
"FBT001", # Boolean positional arg in function definition
"FBT002", # Boolean default value in function definition
"ISC001", # Checks for implicitly concatenated strings on a single line
"PLR0913", # Too many arguments to function call
#
"BLE001", # Do not catch blind exception: `Exception`
"D100", # Missing docstring in public module
"D103", # Missing docstring in public function
"E402", # Module level import not at top of file
"ERA001", # Found commented-out code
"INP001", # File {filename} is part of an implicit namespace package. Add an __init__.py.
"T201", # `print` found
]
[tool.ruff.lint.flake8-annotations]
ignore-fully-untyped = true
[tool.ruff.lint.pycodestyle]
max-doc-length = 129
max-line-length = 129
[tool.ruff.lint.pydocstyle]
convention = "google"