Fixing issue with `python -m build --wheel` generating "_Warning: Package 'archinstall.default_profiles' is absent from the `packages` configuration" (#2499)

* Fixing issue of: _Warning: Package 'archinstall.default_profiles' is absent from the 'packages' configuration. x50+

* Corrected the package name from 'where' to 'archinstall'

* Undoing change to 'package-data'
This commit is contained in:
Anton Hvornum 2024-05-13 15:17:05 +02:00 committed by GitHub
parent 20f802dfc3
commit 195eb0ba6d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 5 deletions

3
.gitignore vendored
View File

@ -21,10 +21,11 @@ SAFETY_LOCK
**/**.network **/**.network
**/**.target **/**.target
**/**.qcow2 **/**.qcow2
**/**.log
**/**.fd
/test*.py /test*.py
**/archiso **/archiso
/guided.py /guided.py
/install.log
venv venv
.venv .venv
.idea/** .idea/**

View File

@ -43,10 +43,10 @@ version = {attr = "archinstall.__version__"}
readme = {file = ["README.rst", "USAGE.rst"]} readme = {file = ["README.rst", "USAGE.rst"]}
[tool.setuptools] [tool.setuptools]
packages = ["archinstall"] include-package-data = true
[tool.setuptools.package-data] [tool.setuptools.package-data]
# We could specify locales/lancuages.json etc instead, but catchall works too. # We could specify locales/languages.json etc instead, but catchall works too.
"archinstall" = [ "archinstall" = [
"**/*.py", "**/*.py",
"**/*.mo", "**/*.mo",
@ -55,8 +55,8 @@ packages = ["archinstall"]
"**/*.json", "**/*.json",
] ]
# [tool.setuptools.packages.find] [tool.setuptools.package-dir]
# where = ["archinstall"] archinstall = "archinstall"
[tool.mypy] [tool.mypy]
python_version = "3.11" python_version = "3.11"