1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
[tool.poetry]
name = "bbpb"
version = "1.4.2"
description = "Library for working with protobuf messages without a protobuf type definition."
authors = ["Ryan Winkelmaier <ryan.winkelmaier@nccgroup.com>"]
license = "MIT"
repository = "https://github.com/nccgroup/blackboxprotobuf"
readme = "README.md"
keywords = ["protobuf"]
exclude = ["./tests"]
packages = [
{ include = "blackboxprotobuf" }
]
[tool.poetry.dependencies]
python = "^3.8"
six = "^1.16"
[tool.poetry.dev-dependencies]
pytest = "^7.4.2"
hypothesis = "^6.31.6"
black = "^23.9.1"
protobuf = "^3.20"
[tool.poetry.group.dev.dependencies]
mypy = "^1.10.0"
[tool.poetry.scripts]
bbpb = "blackboxprotobuf.__main__:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
|