Wallman/pyproject.toml

33 lines
972 B
TOML
Raw Permalink Normal View History

2024-06-03 21:40:34 +02:00
[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"
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",
'importlib-metadata; python_version<"3.10"',
]
[project.urls]
Homepage = "https://git.entheuer.de/emma/Wallman"
Issues = "https://git.entheuer.de/emma/Wallman/issues"