forked from tier4/driving_log_replayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (63 loc) · 2.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[tool.poetry]
name = "driving_log_replayer_cli"
version = "1.10.6"
description = "command line tool for driving_log_replayer"
authors = [
"Hayato Mizushima <[email protected]>",
"Koji Minoda <[email protected]>",
"Keisuke Shima <[email protected]>",
]
readme = "README.md"
license = "Apache-2.0"
packages = [
{ include = "driving_log_replayer_cli"},
{ include = "driving_log_replayer_analyzer", from="driving_log_replayer_analyzer"},
]
include = [
"driving_log_replayer_cli",
"driving_log_replayer_analyzer",
]
[tool.poetry.scripts]
dlr = "driving_log_replayer_cli:main"
dlr-analyzer = "driving_log_replayer_analyzer:main"
[tool.poetry.dependencies]
python = "^3.10"
termcolor = "^2.3.0"
natsort = "^8.4.0"
pyyaml = "^6.0.1"
toml = "^0.10.2"
click = "^8.1.7"
pandas = "^2.1.0"
plotly = "^5.16.1"
kaleido = "0.2.1"
simplejson = "^3.19.1"
pydantic = "^2.5.2"
[tool.poetry.group.dev.dependencies]
black = "^23.9.1"
ruff = "^0.1.5"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.3"
mkdocs-material = "^9.4.2"
mkdocs-awesome-pages-plugin = "^2.9.2"
mkdocs-static-i18n = "^1.0.6"
mdx-truly-sane-lists = "^1.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line_length = 100
[tool.ruff]
line-length = 100
show-source = true
# https://beta.ruff.rs/docs/rules/
select = ["A", "B", "C", "D", "E", "F", "G", "I", "N", "Q", "S", "T", "W", "ANN", "ARG", "BLE", "COM", "DJ", "DTZ", "EM", "ERA", "EXE", "FBT", "ICN", "ISC", "NPY", "PD", "PGH", "PIE", "PL", "PT", "PTH", "PYI", "RET", "RSE", "RUF", "SIM", "SLF", "TCH", "TID", "TRY", "UP", "YTT"]
ignore = ["Q000", "ANN101", "ANN102", "ANN401", "PGH004", "E501", "PLR0913", "S101", "S301", "S603", "SIM115", "D100", "D101", "D102", "D103", "D104", "D105", "D106", "D107", "D203", "D212", "D404", "D417", "PD011", "PD002", "PD901"]
fixable=["D", "I", "ANN", "COM", "EXE", "PIE"]
[tool.ruff.isort]
# https://pycqa.github.io/isort/docs/configuration/options.html#default-section
force-sort-within-sections = true
known-third-party = ["launch", "yaml"]
force-single-line = true
# https://beta.ruff.rs/docs/settings/#isort-relative-imports-order
relative-imports-order = "closest-to-furthest"
order-by-type = false