Wallman/pyproject.toml

35 lines
1,001 B
TOML
Raw Normal View History

2024-06-03 21:40:34 +02:00
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "wallman"
2024-09-02 16:37:24 +02:00
version = "1.4.2.4"
2024-06-03 21:40:34 +02:00
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"
2024-06-03 22:32:45 +02:00
readme = "README.md"
2024-06-03 21:40:34 +02:00
requires-python = ">=3.11"
keywords = ["Desktop", "Wallpapers"]
license = {text = "MIT"}
classifiers = [
2024-06-03 22:30:35 +02:00
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
2024-06-03 21:40:34 +02:00
"License :: OSI Approved :: MIT License",
2024-06-03 22:30:35 +02:00
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX :: GNU Hurd",
"Operating System :: POSIX :: BSD",
2024-06-03 21:40:34 +02:00
]
dependencies = [
"APScheduler",
"pillow",
"pystray",
2024-06-03 21:40:34 +02:00
'importlib-metadata; python_version<"3.10"',
]
[project.urls]
Homepage = "https://git.entheuer.de/emma/Wallman"
Issues = "https://git.entheuer.de/emma/Wallman/issues"