From efa02f49c94682f2f81cb037e72d2a1a261a774d Mon Sep 17 00:00:00 2001 From: Emma Nora Theuer Date: Mon, 3 Jun 2024 21:40:34 +0200 Subject: [PATCH] Initial Commit --- pyproject.toml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..fbf8ade --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,28 @@ +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" + +[project] +name = "wallman" +version = "1.3.0b1" +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 = "README" +requires-python = ">=3.11" +keywords = ["Desktop", "Wallpapers"] +license = {text = "MIT"} +classifiers = [ + "Programming language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: Linux", +] +dependencies = [ + "APScheduler", + 'importlib-metadata; python_version<"3.10"', +] + +[project.urls] +Homepage = "https://git.entheuer.de/emma/Wallman" +Issues = "https://git.entheuer.de/emma/Wallman/issues"