Update to account for switch to standard layout.

This commit is contained in:
Emma Nora Theuer 2025-02-03 22:36:51 +01:00
parent 7f9d26004a
commit 34dac42c31
2 changed files with 10 additions and 5 deletions

View file

@ -1,6 +1,3 @@
graft src
include src/*.py
graft icons
graft distfiles
include sample_config.toml
recursive-include icons *
exclude README.org

View file

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "wallman"
version = "1.4.4.4"
version = "1.5.0.0"
authors = [
{name = "Emma Nora Theuer", email = "wallman@entheuer.de"},
]
@ -29,6 +29,14 @@ dependencies = [
'importlib-metadata; python_version<"3.10"',
]
[tool.setuptools.packages.find]
where = ["."]
include = ["wallman*"]
exclude = ["icons*", "packaging*"]
[project.urls]
Homepage = "https://git.entheuer.de/emma/Wallman"
Issues = "https://git.entheuer.de/emma/Wallman/issues"
[project.scripts]
wallman = "wallman.main:main"