From: Kaliko Jack Date: Sun, 2 Jun 2013 13:27:28 +0000 (+0200) Subject: Fixed py_modules in setup.py X-Git-Tag: v0.4.0~9 X-Git-Url: https://git.kaliko.me/?p=python-musicpd.git;a=commitdiff_plain;h=129580789b889e62a473b5ebe4ffd3a3d3423848 Fixed py_modules in setup.py Mention explicitly py2 is not supported --- diff --git a/CHANGES.txt b/CHANGES.txt index c07fcf8..175d564 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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 diff --git a/setup.py b/setup.py index 13816a7..4e31856 100644 --- 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"],