diff --git a/pyproject.toml b/pyproject.toml index 0281ce2..e78b222 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,12 +4,12 @@ build-backend = "setuptools.build_meta" [project] name = "wallman" -version = "1.5.1.3" +version = "1.5.1.4" authors = [ {name = "Emma Nora Theuer", email = "wallman@entheuer.de"}, ] description = "A simple program to set dynamic wallpapers on standalone X11 Windows Managers and Wayland compositors" -readme = "pypireadme.md" +readme = "README.md" requires-python = ">=3.11" keywords = ["Desktop", "Wallpapers"] license = {text = "MIT"} diff --git a/wallman/wallman_lib.py b/wallman/wallman_lib.py index b3c0602..0591eb1 100644 --- a/wallman/wallman_lib.py +++ b/wallman/wallman_lib.py @@ -7,7 +7,7 @@ from apscheduler.schedulers.background import BackgroundScheduler from apscheduler.triggers.cron import CronTrigger from typing import Dict, List -from wallman_classes import ConfigError, ConfigGeneral, ConfigFile +from wallman.wallman_classes import ConfigError, ConfigGeneral, ConfigFile # Setup Logging. NOTE: Declaration as a global variable is necessary to ensure correct functionality across multiple modules. global logger