/
phprus
/
github_dpdk
Обзор
Документация
Войти
/
phprus
/
github_dpdk
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
dts/pyproject.toml
69 строк
2 KB
Koushik Bhargav Nimoji
dts: update format check
08 июл 2026, 17:51
08 июл 2026, 17:51
cd49d02
Код
Авторство
О чём код?
# SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2022 University of New Hampshire # Copyright(c) 2023 PANTHEON.tech s.r.o. [tool.poetry] package-mode = false name = "dts" version = "0.1.0" description = "DPDK Test Suite." license = "BSD-3-Clause" authors = [ "Owen Hilyard <ohilyard@iol.unh.edu>", "Juraj Linkeš <juraj.linkes@pantheon.tech>", "Jeremy Spewock <jspewock@iol.unh.edu>" ] maintainers = [ "Juraj Linkeš <juraj.linkes@pantheon.tech>" ] documentation = "https://doc.dpdk.org/guides/tools/dts.html" [tool.poetry.dependencies] python = "^3.10" PyYAML = "^6.0" fabric = "^3.2" scapy = "^2.6.1" typing-extensions = "^4.11.0" aenum = "^3.1.15" pydantic = "^2.9.2" [tool.poetry.group.dev.dependencies] mypy = "^2.1.0" toml = "^0.10.2" ruff = "^0.15.16" types-paramiko = "^4.0.0.20260518" types-invoke = "^2.0.0.10" types-pyyaml = "^6.0.12.20260518" [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.ruff] target-version = "py310" line-length = 100 [tool.ruff.format] docstring-code-format = true [tool.ruff.lint] select = [ "F", # pyflakes "E", "W", # pycodestyle "D", # pydocstyle "C90", # mccabe "I", # isort # pydoclint "DOC202", "DOC402", "DOC403", "DOC501" ] preview = true # enable to get early access to pydoclint rules explicit-preview-rules = true # enable ONLY the explicitly selected preview rules [tool.ruff.lint.pydocstyle] convention = "google" [tool.mypy] python_version = "3.10" enable_error_code = ["ignore-without-code"] show_error_codes = true warn_unused_ignores = true