]> kaliko git repositories - python-musicpd.git/commitdiff
Fixed py_modules in setup.py
authorKaliko Jack <kaliko@azylum.org>
Sun, 2 Jun 2013 13:27:28 +0000 (15:27 +0200)
committerKaliko Jack <kaliko@azylum.org>
Sun, 2 Jun 2013 13:27:28 +0000 (15:27 +0200)
Mention explicitly py2 is not supported

CHANGES.txt
setup.py

index c07fcf85e5764db97458dd4ad2b87e97ff3a40c4..175d56414a3240915a545d4ff097b25a42d78e11 100644 (file)
@@ -6,6 +6,7 @@ Changes in 0.3.1 UNRELEASED
 
 * renamed musicpd
 * python3 port
+* no python2 support
 * added searchadd and searchaddpl commands
 * added seekcur command
 * added client to client commands
index 13816a7f4141682decc6eddfa074afbd471ba009..4e3185691b8603e777ed18193367e7d59a25d159 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#! /usr/bin/env python3
 
 from distutils.core import setup
 
@@ -45,7 +45,7 @@ setup(
     author_email='kaliko@azylum.org',
     #url="http://jatreuman.indefero.net/p/python-mpd/",
     download_url="http://pypi.python.org/pypi/python-musicpd/",
-    py_modules=["mpd"],
+    py_modules=["musicpd"],
     classifiers=CLASSIFIERS,
     #license=LICENSE,
     keywords=["mpd"],