Repository URL to install this package:
Version:
4.0.1 ▾
|
flockwave-parsers
/
pyproject.toml
|
---|
[project]
name = "flockwave-parsers"
version = "4.0.1"
description = "Parser objects for various message formats"
authors = [{ name = "Tamas Nepusz", email = "tamas@collmot.com" }]
license = "MIT"
requires-python = ">=3.10"
[project.optional-dependencies]
rpc = [
"tinyrpc>=1.0.4"
]
[tool.poetry]
packages = [
{ include = "flockwave", from = "src" }
]
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[[tool.poetry.source]]
name = "collmot"
url = "https://pypi.collmot.com/simple/"
priority = "explicit"
[[tool.poetry.source]]
name = "fury"
url = "https://pypi.fury.io/skybrush/"
priority = "supplemental"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
coverage = {extras = ["toml"], version = "^7.1"}
pytest-cov = "^6.1.1"
orjson = "^3.10.18"
[tool.coverage.paths]
source = ["src"]
[tool.coverage.run]
branch = true
source = ["src"]
[tool.coverage.report]
show_missing = true
[tool.ruff]
lint.ignore = ["B905", "C901", "E402", "E501"]
lint.select = ["B", "C", "E", "F", "W"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"