37 lines
1.0 KiB
TOML
37 lines
1.0 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools_scm]
|
|
|
|
[project]
|
|
name = "archinstall"
|
|
version = "2.4.0"
|
|
description = "Arch Linux installer - guided, templates etc."
|
|
authors = [
|
|
"Anton Hvornum <anton@hvornum.se>"
|
|
]
|
|
license = "GNU General Public License v3 or later (GPLv3+)"
|
|
readme = "README.md"
|
|
python = ">=3.10"
|
|
homepage = "https://archlinux.org"
|
|
repository = "https://github.com/archlinux/archinstall"
|
|
documentation = "https://archinstall.readthedocs.io/"
|
|
|
|
keywords = ["linux", "arch", "archinstall", "installer"]
|
|
|
|
classifiers = [
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"Operating System :: POSIX :: Linux",
|
|
]
|
|
|
|
[tool.mypy]
|
|
python_version = "3.10"
|
|
exclude = "tests"
|
|
|
|
[tool.bandit]
|
|
targets = ["ourkvm"]
|
|
exclude = ["/tests"] |