Skip to content

Commit

Permalink
Add binary metadata and icon
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Jul 3, 2024
1 parent 480f163 commit 7448adf
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
Binary file added docs/assets/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 11 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name = "mail-deduplicate"
version = "7.5.0"
# Python versions and their status: https://devguide.python.org/versions/
requires-python = ">= 3.9"
description = "📧 CLI to deduplicate mails from mail boxes."
description = "📧 CLI to deduplicate mails from mail boxes"
authors = [{ name = "Kevin Deldycke", email = "[email protected]" }]
readme = "readme.md"
keywords = [
Expand Down Expand Up @@ -88,6 +88,16 @@ docs = [
[project.scripts]
mdedup = "mail_deduplicate.__main__:main"

[tool.nuitka]
product-name = "Mail Deduplicate"
file-description = "📧 CLI to deduplicate mails from mail boxes"
copyright = "Kevin Deldycke <[email protected]> and contributors. Distributed under GPL-2.0-or-later license."
file-version = "7.5.0"
product-version = "7.5.0"
macos-app-icon = "docs/assets/icon.png"
linux-icon = "docs/assets/icon.png"
windows-icon-from-ico = "docs/assets/icon.png"

[tool.mypy]
warn_unused_configs = true
warn_redundant_casts = true
Expand Down

0 comments on commit 7448adf

Please sign in to comment.