mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-04-07 12:23:54 +08:00
version: lp-dp v0.9.5 for EON/C2 date: 2023-09-13T13:36:48 commit: 1d59b81c40b93f37d4a341c5d35b1c3cd293543d
21 lines
575 B
TOML
21 lines
575 B
TOML
[tool.poetry]
|
|
name = "opendbc"
|
|
version = "1.0.0"
|
|
description = "CAN bus databases and tools"
|
|
license = "MIT"
|
|
authors = ["Vehicle Researcher <user@comma.ai>"]
|
|
readme = "README.md"
|
|
repository = "https://github.com/commaai/opendbc"
|
|
|
|
[tool.cython-lint]
|
|
max-line-length = 120
|
|
ignore = ["E111", "E114"]
|
|
|
|
# https://beta.ruff.rs/docs/configuration/#using-pyprojecttoml
|
|
[tool.ruff]
|
|
select = ["E", "F", "W", "PIE", "C4", "ISC", "RUF100", "A"]
|
|
ignore = ["W292", "E741", "E402", "C408", "ISC003"]
|
|
line-length = 160
|
|
target-version="py311"
|
|
flake8-implicit-str-concat.allow-multiline=false
|