mirror of
https://github.com/truenas/scale-build.git
synced 2026-02-15 07:29:12 +00:00
* fix building on trixie * fix inconsistencies in pyproject.toml * fix manifest.yml * remove hard-coded debian version from readme
28 lines
561 B
TOML
28 lines
561 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "scale_build"
|
|
description = "A build framework for TrueNAS SCALE"
|
|
readme = "README.md"
|
|
license = {text = "GPL-3.0"}
|
|
requires-python = ">=3.11"
|
|
dynamic = ["version"]
|
|
dependencies = [
|
|
"coloredlogs",
|
|
"toposort",
|
|
"requests",
|
|
"pyyaml",
|
|
]
|
|
|
|
[project.scripts]
|
|
scale_build = "scale_build.main:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["scale_build*", "truenas_install*"]
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|