From: Kaliko Jack Date: Wed, 30 Dec 2020 10:06:45 +0000 (+0100) Subject: Releasing v0.5.1 X-Git-Tag: v0.5.1^0 X-Git-Url: https://git.kaliko.me/?p=python-musicpd.git;a=commitdiff_plain;h=b33bea0e5a0068eda0f882ac46b9383d34037e6e Releasing v0.5.1 --- diff --git a/CHANGES.txt b/CHANGES.txt index d4c7122..f4e3eb7 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,9 +1,10 @@ python-musicpd Changes List =========================== -Changes in 0.6.0 +Changes in 0.5.1 ---------------- +* Clean up packaging (remove useless files and html doc) * Remove bztar from sdist * Switch to xztar sdist diff --git a/MANIFEST.in b/MANIFEST.in index b5cd761..fd43aca 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,2 @@ -include *.txt -recursive-include doc * +include CHANGES.txt +recursive-include doc/source * diff --git a/musicpd.py b/musicpd.py index d4d1974..f4915b5 100644 --- a/musicpd.py +++ b/musicpd.py @@ -28,7 +28,7 @@ HELLO_PREFIX = "OK MPD " ERROR_PREFIX = "ACK " SUCCESS = "OK" NEXT = "list_OK" -VERSION = '0.6.0' +VERSION = '0.5.1' #: seconds before a tcp connection attempt times out CONNECTION_TIMEOUT = 5 diff --git a/setup.cfg b/setup.cfg index 43c45f7..c24448d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,10 @@ [sdist] formats = xztar,zip + +[metadata] +license_file = LICENSE.txt + [bdist_wheel] universal = 0