2024-06-29 14:48:13 +08:00
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools>=61.2"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "west"
|
2024-10-05 00:03:24 +08:00
|
|
|
version = "1.3.99"
|
2024-06-29 14:48:13 +08:00
|
|
|
authors = [{name = "Zephyr Project", email = "devel@lists.zephyrproject.org"}]
|
|
|
|
description = "Zephyr RTOS Project meta-tool"
|
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: Apache Software License",
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
"Operating System :: MacOS :: MacOS X",
|
|
|
|
"Operating System :: Microsoft :: Windows",
|
|
|
|
]
|
2024-10-11 18:16:23 +08:00
|
|
|
requires-python = ">=3.9"
|
2024-06-29 14:48:13 +08:00
|
|
|
dependencies = [
|
|
|
|
"colorama",
|
|
|
|
"PyYAML>=5.1",
|
|
|
|
"pykwalify",
|
|
|
|
"setuptools",
|
|
|
|
"packaging",
|
|
|
|
]
|
|
|
|
|
|
|
|
[project.license]
|
|
|
|
file = "LICENSE"
|
|
|
|
|
|
|
|
[project.readme]
|
|
|
|
file = "README.rst"
|
|
|
|
content-type = "text/x-rst"
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
Homepage = "https://github.com/zephyrproject-rtos/west"
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
west = "west.app.main:main"
|
|
|
|
|
|
|
|
[tool.setuptools]
|
|
|
|
package-dir = {"" = "src"}
|
|
|
|
zip-safe = false
|
|
|
|
include-package-data = true
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
where = ["src"]
|
|
|
|
namespaces = false
|