opendbc/pyproject.toml

21 lines
575 B
TOML
Raw Normal View History

2023-06-18 08:06:42 -07:00
[tool.poetry]
2023-06-14 07:55:49 -07:00
name = "opendbc"
2023-06-18 08:06:42 -07:00
version = "1.0.0"
description = "CAN bus databases and tools"
2023-06-14 07:55:49 -07:00
license = "MIT"
2023-06-18 08:06:42 -07:00
authors = ["Vehicle Researcher <user@comma.ai>"]
2023-06-14 07:55:49 -07:00
readme = "README.md"
repository = "https://github.com/commaai/opendbc"
[tool.cython-lint]
max-line-length = 120
ignore = ["E111", "E114"]
2023-08-07 15:26:46 -07:00
# https://beta.ruff.rs/docs/configuration/#using-pyprojecttoml
[tool.ruff]
2023-08-14 12:52:47 -07:00
select = ["E", "F", "W", "PIE", "C4", "ISC", "RUF100", "A"]
ignore = ["W292", "E741", "E402", "C408", "ISC003"]
2023-08-07 15:26:46 -07:00
line-length = 160
2023-08-14 12:52:47 -07:00
target-version="py311"
flake8-implicit-str-concat.allow-multiline=false