f-stack/dpdk/dts/pyproject.toml

59 lines
1.2 KiB
TOML
Raw Normal View History

2023-09-13 12:21:49 +00:00
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2022 University of New Hampshire
2025-01-10 11:50:43 +00:00
# Copyright(c) 2023 PANTHEON.tech s.r.o.
2023-09-13 12:21:49 +00:00
[tool.poetry]
name = "dts"
version = "0.1.0"
2025-01-10 11:50:43 +00:00
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 = [
"Lijuan Tu <lijuan.tu@intel.com>",
"Juraj Linkeš <juraj.linkes@pantheon.tech>"
]
documentation = "https://doc.dpdk.org/guides/tools/dts.html"
2023-09-13 12:21:49 +00:00
[tool.poetry.dependencies]
python = "^3.10"
warlock = "^2.0.1"
PyYAML = "^6.0"
types-PyYAML = "^6.0.8"
2025-01-10 11:50:43 +00:00
fabric = "^2.7.1"
scapy = "^2.5.0"
2023-09-13 12:21:49 +00:00
2025-01-10 11:50:43 +00:00
[tool.poetry.group.dev.dependencies]
2023-09-13 12:21:49 +00:00
mypy = "^0.961"
2025-01-10 11:50:43 +00:00
black = "^22.6.0"
2023-09-13 12:21:49 +00:00
isort = "^5.10.1"
pylama = "^8.4.1"
2025-01-10 11:50:43 +00:00
pyflakes = "^2.5.0"
2023-09-13 12:21:49 +00:00
toml = "^0.10.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pylama]
2025-01-10 11:50:43 +00:00
linters = "mccabe,pycodestyle,pyflakes"
2023-09-13 12:21:49 +00:00
format = "pylint"
2025-01-10 11:50:43 +00:00
max_line_length = 100
2023-09-13 12:21:49 +00:00
[tool.mypy]
python_version = "3.10"
2025-01-10 11:50:43 +00:00
enable_error_code = ["ignore-without-code"]
show_error_codes = true
warn_unused_ignores = true
2023-09-13 12:21:49 +00:00
[tool.isort]
profile = "black"
[tool.black]
target-version = ['py310']
include = '\.pyi?$'
2025-01-10 11:50:43 +00:00
line-length = 100