21 lines
547 B
TOML
21 lines
547 B
TOML
[build-system]
|
|
requires = ["setuptools>=64", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "gcc-arm-none-eabi"
|
|
version = "13.2.1"
|
|
description = "ARM GCC toolchain for bare-metal targets"
|
|
requires-python = ">=3.8"
|
|
|
|
[project.scripts]
|
|
arm-none-eabi-gcc = "gcc_arm_none_eabi:_run_gcc"
|
|
arm-none-eabi-objcopy = "gcc_arm_none_eabi:_run_objcopy"
|
|
arm-none-eabi-size = "gcc_arm_none_eabi:_run_size"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["gcc_arm_none_eabi*"]
|
|
|
|
[tool.setuptools.package-data]
|
|
gcc_arm_none_eabi = ["toolchain/**/*"]
|