-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
65 lines (54 loc) · 1.08 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
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[project]
name = 'selfdrive'
description = "Autonomy Lab's monorepo"
version = '0.0.0'
authors = [
{name = 'Autonomy Lab'},
]
license = {'text' = 'GPL-3.0-only'}
requires-python = '>=3.12'
dependencies = [
'invoke',
'matplotlib',
'mdformat-gfm',
'pip-tools',
'schema',
'strictyaml',
'tqdm',
]
[project.optional-dependencies]
nix-unsupported = [
'can-isotp',
'opencan-cand',
'scons',
]
[project.urls]
repo = 'https://github.com/CooperUnion/selfdrive'
[tool.black]
line-length = 79
skip-string-normalization = true
[tool.pip-tools]
allow-unsafe = true
generate-hashes = true
strip-extras = false
upgrade = true
verbose = true
[tool.ruff]
line-length = 79
[tool.ruff.format]
quote-style = 'single'
[tool.ruff.lint.isort]
force-single-line = true
[tool.setuptools.packages.find]
exclude = ['*']
[tool.tomlsort]
trailing_comma_inline_array = true
[tool.yamlfix]
exclude = ['common/cantools/**/*.yml']
none_representation = '~'
section_whitelines = 1
sequence_style = 'block_style'
whitelines = 1