mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-09-10 11:23:42 +08:00
0e51ecbb7e
version: sunnypilot v2026.003.000 (dev)
date: 2026-09-09T15:43:49
master commit: b255314f5a
47 lines
1022 B
TOML
47 lines
1022 B
TOML
[project]
|
|
name = "msgq"
|
|
version = "0.0.1"
|
|
description = "Lock-free IPC pub/sub message queue"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = {text = "MIT"}
|
|
authors = [{name = "comma.ai"}]
|
|
classifiers = [
|
|
"Natural Language :: English",
|
|
"Programming Language :: Python :: 3",
|
|
"Topic :: System :: Hardware",
|
|
]
|
|
dependencies = []
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"setuptools", # for distutils
|
|
"Cython",
|
|
"scons",
|
|
"ruff",
|
|
"cppcheck",
|
|
"cpplint",
|
|
"codespell",
|
|
"ty",
|
|
"lefthook",
|
|
]
|
|
|
|
[tool.setuptools.package-data]
|
|
"*" = ["*.so"]
|
|
|
|
# https://beta.ruff.rs/docs/configuration/#using-pyprojecttoml
|
|
[tool.ruff]
|
|
lint.select = ["E", "F", "W", "PIE", "C4", "ISC", "RUF100", "A"]
|
|
lint.ignore = ["W292", "E741", "E402", "C408", "ISC003"]
|
|
lint.flake8-implicit-str-concat.allow-multiline=false
|
|
|
|
line-length = 160
|
|
target-version="py311"
|
|
|
|
[tool.ty.src]
|
|
exclude = ["site_scons/"]
|
|
|
|
[tool.ty.rules]
|
|
# Cython modules are compiled at build time, not available for static analysis
|
|
unresolved-import = "ignore"
|