1[tool.poetry] 2name = "nanopb" 3version = "0.3.9.8" 4description = "Nanopb is a small code-size Protocol Buffers implementation in ansi C. It is especially suitable for use in microcontrollers, but fits any memory restricted system." 5authors = ["Petteri Aimonen <jpa@npb.mail.kapsi.fi>"] 6license = "Zlib" 7repository = "https://github.com/nanopb/nanopb/" 8readme = "README.md" 9homepage = "https://jpa.kapsi.fi/nanopb/" 10documentation = "https://jpa.kapsi.fi/nanopb/docs/index.html" 11keywords = ["protobuf", "protoc"] 12classifiers = ["Topic :: Software Development :: Build Tools"] 13 14[tool.poetry.scripts] 15nanopb_generator = "nanopb.generator.nanopb_generator:main_cli" 16protoc-gen-nanopb = "nanopb.generator.nanopb_generator:main_plugin" 17 18[tool.poetry.dependencies] 19python = ">=2.7" 20protobuf = ">=3.6" 21 22[tool.poetry.dev-dependencies] 23 24[build-system] 25requires = ["poetry>=0.12"] 26build-backend = "poetry.masonry.api" 27