]> kaliko git repositories - mpd-sima.git/commitdiff
Update Changelog and setup.py
authorkaliko <kaliko@azylum.org>
Tue, 10 Jun 2014 14:22:23 +0000 (16:22 +0200)
committerkaliko <kaliko@azylum.org>
Tue, 10 Jun 2014 14:36:25 +0000 (16:36 +0200)
doc/Changelog
setup.py

index 3e5342a72eb5d423dec6b956f69400074edb6172..0506bd7f2b09e32490561a131893471d4070345b 100644 (file)
@@ -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 <kaliko@azylum.org> UNRELEASED
 
index 93da156532bf64b61db17b1c763b80b61d77d074..54048004051b0b93bcf31ad0da17789e7a98e1b4 100755 (executable)
--- 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",