updated the installer so that it should actually work
Some checks failed
Build / build (push) Failing after 5m23s
Some checks failed
Build / build (push) Failing after 5m23s
This commit is contained in:
232
examples/archinstall/pyproject.toml
Normal file
232
examples/archinstall/pyproject.toml
Normal file
@@ -0,0 +1,232 @@
|
||||
[build-system]
|
||||
requires = ["setuptools>=77"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "archinstall"
|
||||
version = "3.0.13"
|
||||
description = "Arch Linux installer - guided, templates etc."
|
||||
authors = [
|
||||
{name = "Anton Hvornum", email = "anton@hvornum.se"},
|
||||
]
|
||||
license = "GPL-3.0-only"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.12"
|
||||
keywords = ["linux", "arch", "archinstall", "installer"]
|
||||
classifiers = [
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Operating System :: POSIX :: Linux",
|
||||
]
|
||||
dependencies = [
|
||||
"pyparted>=3.13.0",
|
||||
"pydantic==2.12.4",
|
||||
"cryptography>=45.0.7",
|
||||
"textual>=5.3.0",
|
||||
"pytest-mock>=3.15.1",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
Home = "https://archlinux.org"
|
||||
Documentation = "https://archinstall.readthedocs.io/"
|
||||
Source = "https://github.com/archlinux/archinstall"
|
||||
|
||||
[project.optional-dependencies]
|
||||
log = ["systemd_python==235"]
|
||||
dev = [
|
||||
"mypy==1.18.2",
|
||||
"flake8==7.3.0",
|
||||
"pre-commit==4.4.0",
|
||||
"ruff==0.14.4",
|
||||
"pylint==4.0.2",
|
||||
"pytest==9.0.0",
|
||||
]
|
||||
doc = ["sphinx"]
|
||||
|
||||
[project.scripts]
|
||||
archinstall = "archinstall:run_as_a_module"
|
||||
|
||||
[tool.setuptools.dynamic]
|
||||
readme = {file = ["README.rst", "USAGE.rst"]}
|
||||
|
||||
[tool.setuptools]
|
||||
include-package-data = true
|
||||
|
||||
[tool.setuptools.package-data]
|
||||
# We could specify locales/languages.json etc instead, but catchall works too.
|
||||
"archinstall" = [
|
||||
"**/*.py",
|
||||
"**/*.mo",
|
||||
"**/*.po",
|
||||
"**/*.pot",
|
||||
"**/*.json",
|
||||
]
|
||||
|
||||
[tool.setuptools.package-dir]
|
||||
archinstall = "archinstall"
|
||||
|
||||
[tool.mypy]
|
||||
python_version = "3.12"
|
||||
files = "."
|
||||
exclude = "^build/"
|
||||
disallow_any_explicit = false
|
||||
disallow_any_expr = false
|
||||
disallow_any_unimported = true
|
||||
enable_error_code = [
|
||||
"deprecated",
|
||||
"explicit-override",
|
||||
"ignore-without-code",
|
||||
"mutable-override",
|
||||
"possibly-undefined",
|
||||
"redundant-expr",
|
||||
"redundant-self",
|
||||
"truthy-bool",
|
||||
"truthy-iterable",
|
||||
"unimported-reveal",
|
||||
"unused-awaitable",
|
||||
]
|
||||
show_traceback = true
|
||||
strict = true
|
||||
warn_unreachable = true
|
||||
|
||||
[[tool.mypy.overrides]]
|
||||
module = "archinstall.default_profiles.*"
|
||||
disallow_any_explicit = true
|
||||
|
||||
[[tool.mypy.overrides]]
|
||||
module = "archinstall.examples.*"
|
||||
disallow_any_explicit = true
|
||||
|
||||
[[tool.mypy.overrides]]
|
||||
module = "archinstall.lib.*"
|
||||
warn_return_any = false
|
||||
|
||||
[[tool.mypy.overrides]]
|
||||
module = "archinstall.lib.disk.*"
|
||||
# 'Any' imports are allowed because pyparted doesn't have type hints
|
||||
disallow_any_unimported = false
|
||||
|
||||
[[tool.mypy.overrides]]
|
||||
module = "archinstall.lib.models.*"
|
||||
# 'Any' imports are allowed because pyparted doesn't have type hints
|
||||
disallow_any_unimported = false
|
||||
|
||||
[[tool.mypy.overrides]]
|
||||
module = "archinstall.lib.packages"
|
||||
disallow_any_explicit = true
|
||||
|
||||
[[tool.mypy.overrides]]
|
||||
module = "archinstall.lib.utils"
|
||||
disallow_any_explicit = true
|
||||
|
||||
[[tool.mypy.overrides]]
|
||||
module = [
|
||||
"parted",
|
||||
]
|
||||
ignore_missing_imports = true
|
||||
|
||||
[tool.bandit]
|
||||
targets = ["archinstall"]
|
||||
exclude = ["/tests"]
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
pythonpath = ["."]
|
||||
addopts = "-s"
|
||||
testpaths = ["tests"]
|
||||
|
||||
[tool.pylint.main]
|
||||
ignore-paths = [
|
||||
"^build/",
|
||||
"^docs/",
|
||||
]
|
||||
persistent = false
|
||||
py-version = "3.12"
|
||||
recursive = true
|
||||
|
||||
[tool.pylint.format]
|
||||
indent-string = '\t'
|
||||
max-line-length = 160
|
||||
|
||||
[tool.pylint."messages control"]
|
||||
disable = [
|
||||
"C",
|
||||
"R",
|
||||
"attribute-defined-outside-init",
|
||||
"broad-exception-caught",
|
||||
"cell-var-from-loop",
|
||||
"dangerous-default-value",
|
||||
"fixme",
|
||||
"protected-access",
|
||||
"raise-missing-from",
|
||||
"unspecified-encoding",
|
||||
"unused-argument",
|
||||
]
|
||||
|
||||
[tool.pylint.refactoring]
|
||||
score = false
|
||||
|
||||
[tool.pylint.variables]
|
||||
init-import = true
|
||||
|
||||
[tool.ruff]
|
||||
target-version = "py312"
|
||||
line-length = 160
|
||||
|
||||
[tool.ruff.format]
|
||||
indent-style = "tab"
|
||||
quote-style = "single"
|
||||
docstring-code-format = true
|
||||
|
||||
[tool.ruff.lint]
|
||||
select = [
|
||||
"ASYNC", # flake8-async
|
||||
"B", # flake8-bugbear
|
||||
"C90", # mccabe
|
||||
"COM", # flake8-commas
|
||||
"DTZ", # flake8-datetimez
|
||||
"E", # pycodestyle errors
|
||||
"EXE", # flake8-executable
|
||||
"F", # Pyflakes
|
||||
"FA", # flake8-future-annotations
|
||||
"FLY", # flynt
|
||||
"G", # flake8-logging-format
|
||||
"I", # isort
|
||||
"ICN", # flake8-import-conventions
|
||||
"ISC", # flake8-implicit-str-concat
|
||||
"LOG", # flake8-logging
|
||||
"PGH", # pygrep-hooks
|
||||
"PIE", # flake8-pie
|
||||
"PLC", # Pylint conventions
|
||||
"PLE", # Pylint errors
|
||||
"PLW", # Pylint warnings
|
||||
"PYI", # flake8-pyi
|
||||
"RSE", # flake8-raise
|
||||
"RUF", # Ruff-specific rules
|
||||
"SLOT", # flake8-slot
|
||||
"T10", # flake8-debugger
|
||||
"UP", # pyupgrade
|
||||
"W", # pycodestyle warnings
|
||||
"YTT", # flake8-2020
|
||||
]
|
||||
|
||||
ignore = [
|
||||
"B006", # mutable-argument-default
|
||||
"B008", # function-call-in-default-argument
|
||||
"B904", # raise-without-from-inside-except
|
||||
"B905", # zip-without-explicit-strict
|
||||
"B909", # loop-iterator-mutation
|
||||
"COM812", # missing-trailing-comma
|
||||
"PLC0415", # import-outside-top-level
|
||||
"PLC1901", # compare-to-empty-string
|
||||
"PLW1514", # unspecified-encoding
|
||||
"PLW1641", # eq-without-hash
|
||||
"PLW2901", # redefined-loop-name
|
||||
"RUF005", # collection-literal-concatenation
|
||||
"RUF015", # unnecessary-iterable-allocation-for-first-element
|
||||
"RUF039", # unraw-re-pattern
|
||||
"RUF051", # if-key-in-dict-del
|
||||
"UP037", # quoted-annotation
|
||||
"W191", # tab-indentation
|
||||
]
|
||||
|
||||
[tool.ruff.lint.mccabe]
|
||||
max-complexity = 40
|
||||
Reference in New Issue
Block a user