From 59ac2936a00e1fa871057ed06f6e19d47f91c074 Mon Sep 17 00:00:00 2001 From: kaliko Date: Tue, 10 Jun 2014 16:22:23 +0200 Subject: [PATCH] Update Changelog and setup.py --- doc/Changelog | 4 +++- setup.py | 7 +++---- 2 files changed, 6 insertions(+), 5 deletions(-) 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", -- 2.39.2