forked from Breakthrough/PySceneDetect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (49 loc) · 1.19 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
#
# PySceneDetect: Python-Based Video Scene Detector
# ---------------------------------------------------------------
# [ Site: http://www.bcastell.com/projects/PySceneDetect/ ]
# [ Github: https://github.com/Breakthrough/PySceneDetect/ ]
# [ Documentation: http://www.scenedetect.com/docs/ ]
#
# Copyright (C) 2014-2024 Brandon Castellano <http://www.bcastell.com>.
#
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.ruff]
exclude = [
"docs"
]
line-length = 100
indent-width = 4
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
docstring-code-format = true
[tool.ruff.lint]
select = [
# flake8-bugbear
"B",
# pycodestyle
"E",
# Pyflakes
"F",
# isort
"I",
# TODO - Add additional rule sets (https://docs.astral.sh/ruff/rules/):
# pyupgrade
#"UP",
# flake8-simplify
#"SIM",
]
ignore = [
# TODO: Determine if we should use __all__, a reudndant alias, or keep this suppressed.
"F401",
# TODO: Line too long
"E501",
# TODO: Do not assign a `lambda` expression, use a `def`
"E731",
]
fixable = ["ALL"]
unfixable = []