mirror of
https://github.com/apache/nuttx.git
synced 2025-12-08 10:55:51 +08:00
26 lines
607 B
TOML
26 lines
607 B
TOML
[build-system]
|
|
requires = ["setuptools>=61", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
version = "0.0.1"
|
|
name = 'nxgdb'
|
|
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]
|
|
nxgdb = "nxgdb"
|
|
|
|
[tool.setuptools.package-data]
|
|
nxgdb = ["nxgdb/*"]
|