mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 06:18:40 +08:00
04b35a2e8f
Now the GDB tool can be built with python -m build . to generate a package. Signed-off-by: xuxingliang <xuxingliang@xiaomi.com>
22 lines
564 B
TOML
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"
|