From: kaliko Date: Tue, 10 Jun 2014 14:22:23 +0000 (+0200) Subject: Update Changelog and setup.py X-Git-Tag: mpd-sima/0.12.0pr4~1 X-Git-Url: https://git.kaliko.me/?a=commitdiff_plain;h=59ac2936a00e1fa871057ed06f6e19d47f91c074;p=mpd-sima.git Update Changelog and setup.py --- diff --git a/doc/Changelog b/doc/Changelog index 3e5342a..0506bd7 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,11 +1,13 @@ sima v0.12.0 * Major refactoring + * Add a setup.py, got rid of the Makefile. * Switched to Python3 (>=3.2) * Depends on requests (http client) * Depends on python-musicpd (py3k port of python-mpd) - configuration file changed + configuration file change internal database remains the same + * Temporarily removed userdb feature -- kaliko jack UNRELEASED diff --git a/setup.py b/setup.py index 93da156..5404800 100755 --- a/setup.py +++ b/setup.py @@ -11,11 +11,10 @@ from sima.info import __version__ as VERSION, __author__ as AUTHOR from sima.info import __doc__ as DESCRIPTION, __email__ as EMAIL data_files = [ - ('share/man/man1', ['data/man/mpd-sima.1',]), - #('share/man/man1', ['data/mpd-sima.1', 'data/simadb_cli.1',]), - #('share/man/man5', ['data/mpd-sima.cfg.5',]), + ('share/man/man1', ['data/man/mpd-sima.1', 'data/simadb_cli.1',]), + ('share/man/man5', ['data/man/mpd-sima.cfg.5',]), ('share/doc/mpd-sima/examples/', glob.glob('doc/examples/*')), - #('share/doc/mpd-sima/', [fi for fi in listdir('doc') if isfile(fi)]), + ('share/doc/mpd-sima/', [fi for fi in listdir('doc') if isfile(fi)]), ] classifiers = [ "Development Status :: 5 - Production/Stable",