From 628ac9ae6abef74eb96d9a2ca944014b8ccebe64 Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Wed, 6 Dec 2023 14:32:36 +1100 Subject: [PATCH] Improve metadata for PyPI --- README.md | 2 +- pyproject.toml | 14 +++++++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3466fb4..6a6b7f1 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ pipx install mpd-now-playable Once pipx is done, the `mpd-now-playable` script should be available on your `$PATH` and ready to use. -Most likely, you'll want mpd-now-playable to stay running in the background as a launchd service. [Here's the service plist I use](./me.00dani.mpd-now-playable.plist), but it's hardcoded to my `$HOME` so you'll want to customise it. +Most likely, you'll want mpd-now-playable to stay running in the background as a launchd service. [Here's the service plist I use](https://git.00dani.me/00dani/mpd-now-playable/src/branch/main/me.00dani.mpd-now-playable.plist), but it's hardcoded to my `$HOME` so you'll want to customise it. ## Configuration diff --git a/pyproject.toml b/pyproject.toml index 9b5b83d..229d753 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,9 +11,21 @@ dependencies = [ "pyobjc-framework-MediaPlayer>=10.0", "python-mpd2>=3.1.0", ] -requires-python = ">=3.12" readme = "README.md" + +requires-python = ">=3.12" license = {text = "MIT"} +classifiers = [ + "Environment :: No Input/Output (Daemon)", + "License :: OSI Approved :: MIT License", + "Operating System :: MacOS :: MacOS X", + "Programming Language :: Python :: 3.12", + "Topic :: Multimedia :: Sound/Audio :: Players", +] + +[project.urls] +Homepage = "https://git.00dani.me/00dani/mpd-now-playable" +Issues = "https://git.00dani.me/00dani/mpd-now-playable/issues" [project.scripts] mpd-now-playable = 'mpd_now_playable.cli:main'