From 129580789b889e62a473b5ebe4ffd3a3d3423848 Mon Sep 17 00:00:00 2001 From: Kaliko Jack Date: Sun, 2 Jun 2013 15:27:28 +0200 Subject: [PATCH] Fixed py_modules in setup.py Mention explicitly py2 is not supported --- CHANGES.txt | 1 + setup.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) 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"], -- 2.39.2