1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
[build-system]
requires = ["setuptools>=67.5"]
build-backend = "setuptools.build_meta"
[project]
name = "archinstall"
dynamic = ["version"]
description = "Arch Linux installer - guided, templates etc."
authors = [
{name = "Anton Hvornum", email = "anton@hvornum.se"},
]
license = {text = "GPL-3.0-only"}
readme = "README.md"
requires-python = ">=3.11"
keywords = ["linux", "arch", "archinstall", "installer"]
classifiers = [
"Programming Language :: Python :: 3.11",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"pyparted==3.12.0",
"simple-term-menu==1.6.1",
]
[project.urls]
Home = "https://archlinux.org"
Documentation = "https://archinstall.readthedocs.io/"
Source = "https://github.com/archlinux/archinstall"
[project.optional-dependencies]
dev = [
"mypy==1.1.1",
"pre-commit==3.3.1",
]
doc = ["sphinx"]
[project.scripts]
archinstall = "archinstall:run_as_a_module"
[tool.setuptools.dynamic]
version = {attr = "archinstall.__version__"}
readme = {file = ["README.rst", "USAGE.rst"]}
[tool.setuptools]
packages = ["archinstall"]
[tool.setuptools.package-data]
# We could specify locales/lancuages.json etc instead, but catchall works too.
"archinstall" = [
"**/*.py",
"**/*.mo",
"**/*.po",
"**/*.pot",
"**/*.json",
]
# [tool.setuptools.packages.find]
# where = ["archinstall"]
[tool.mypy]
python_version = "3.11"
files = "archinstall/"
exclude = "tests"
#check_untyped_defs=true
[tool.bandit]
targets = ["archinstall"]
exclude = ["/tests"]
|