feat: kde fixes, icon, logging

This commit is contained in:
Kat Inskip 2024-02-05 19:28:12 -08:00
parent bfb74c7aca
commit a461bf400f
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
5 changed files with 64 additions and 15 deletions

View file

@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages
with open("README.MD", "r") as f:
long_description = f.read()
@ -16,6 +16,8 @@ setup(
author_email = poetryBlock["authors"][0].split(" <")[1][:-1],
description = poetryBlock["description"],
long_description = long_description,
package_data={'': ['*.png', '*.jpg', '*.jpeg', '*.gif', '*.bmp', '*.tiff', '*.webp']},
include_package_data=True,
entry_points = {
"console_scripts": [
"konawall = konawall.gui:main",