index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2023-03-31 18:14:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-31 18:14:34 +0200 |
commit | dc5291f781c8211b535e043fc865f72eb7b70a3f (patch) | |
tree | 437734478870b028c1ad8203d92174fbb3fd0ad8 /pyproject.toml | |
parent | 1c6b0bae73a02fb91b1670e8527ff2dfb6dc3071 (diff) |
-rw-r--r-- | pyproject.toml | 22 |
diff --git a/pyproject.toml b/pyproject.toml index 3572148e..6e0fcb99 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,14 +1,15 @@ [build-system] -requires = ["setuptools>=67"] +requires = ["setuptools>=67.5"] build-backend = "setuptools.build_meta" [project] name = "archinstall" -dynamic = ["version", "entry-points", "license"] +dynamic = ["version", "entry-points"] 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.10" @@ -26,11 +27,24 @@ Home = "https://archlinux.org" Documentation = "https://archinstall.readthedocs.io/" Source = "https://github.com/archlinux/archinstall" +[project.optional-dependencies] +doc = ["sphinx"] + [project.scripts] archinstall = "archinstall:run_as_a_module" -[project.optional-dependencies] -doc = ["sphinx"] +[tool.setuptools] +packages = ["archinstall", "profiles", "examples"] + +[tool.setuptools.package-data] +archinstall = [ + "examples/*.py", + "profiles/*.py", + "profiles/applications/*.py" +] + +[tool.setuptools.dynamic] +version = {attr = "archinstall.__version__"} [tool.mypy] python_version = "3.10" |