Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2023-03-29 14:39:47 +0200
committerGitHub <noreply@github.com>2023-03-29 14:39:47 +0200
commit9f102a66a4062ea64118c18c8f2c997ff30078ed (patch)
treee4cee8ad3e12bc184f4438220bce7a34350eea08
parent9fe9fd6e62ec75a131e249f5ebe3c2d9ac133474 (diff)
Add some tweaks to make PKGBUILD more manageable (#1695)
* Fixing some values that trigger issues in PKGBUILD * license dynamic
-rw-r--r--pyproject.toml4
1 files changed, 1 insertions, 3 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 61f24e37..3572148e 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "archinstall"
-dynamic = ["version"]
+dynamic = ["version", "entry-points", "license"]
description = "Arch Linux installer - guided, templates etc."
authors = [
{name = "Anton Hvornum", email = "anton@hvornum.se"},
@@ -15,11 +15,9 @@ requires-python = ">=3.10"
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",
"Programming Language :: Python :: 3.10",
- "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
]