Improve metadata for PyPI

This commit is contained in:
Danielle McLean 2023-12-06 14:32:36 +11:00
parent 06d9631445
commit 628ac9ae6a
Signed by: 00dani
GPG key ID: 52C059C3B22A753E
2 changed files with 14 additions and 2 deletions

View file

@ -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

View file

@ -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'