-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpyproject.toml
45 lines (42 loc) · 1.02 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
#
# DVR-Scan: Video Motion Event Detection & Extraction Tool
# --------------------------------------------------------------
# [ Site: https://www.dvr-scan.com/ ]
# [ Repo: https://github.com/Breakthrough/DVR-Scan ]
#
# Copyright (C) 2016 Brandon Castellano <http://www.bcastell.com>.
# DVR-Scan is licensed under the BSD 2-Clause License; see the included
# LICENSE file, or visit one of the above pages for details.
#
[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",
]
fixable = ["ALL"]
unfixable = []