nuttx-mirror/tools/gdb/pyproject.toml
xuxingliang 04b35a2e8f tools/gdb: add pyproject.toml to build as a package
Now the GDB tool can be built with python -m build . to generate a
package.

Signed-off-by: xuxingliang <xuxingliang@xiaomi.com>
2024-11-23 13:09:16 +08:00

22 lines
564 B
TOML

[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
version = "0.0.1"
name = 'nuttxgdb'
description = 'NuttX RTOS GDB extensions'
readme = "README.md"
license = { file = 'LICENSE' }
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
dependencies = ["matplotlib", "numpy", "pyelftools"]
requires-python = ">=3.8"
[tool.setuptools.package-dir]
nuttxgdb = "nuttxgdb"