X-Git-Url: http://git.kaliko.me/?p=python-musicpd.git;a=blobdiff_plain;f=setup.py;h=8ed1c023c82029002f498cea5b82a4c239725dd6;hp=286dafa8fbeb462c25bfd5bb1437547544e7960e;hb=bfd56e9bb04f1d02016c1b8c0406c01152550e31;hpb=0008768ae40167b15c4b466950ea9d1d2c367c8c diff --git a/setup.py b/setup.py old mode 100644 new mode 100755 index 286dafa..8ed1c02 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #! /usr/bin/env python3 -from distutils.core import setup +from setuptools import setup from musicpd import VERSION @@ -24,7 +24,7 @@ CLASSIFIERS = [ LICENSE = """\ Copyright (C) 2008-2010 J. Alexander Treuman -Copyright (C) 2012-2014 Kaliko Jack +Copyright (C) 2012-2015 Kaliko Jack python-musicpd is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by @@ -48,13 +48,14 @@ setup( long_description=LONG_DESCRIPTION, author='Kaliko Jack', author_email='kaliko@azylum.org', - url="http://kaliko.me/code/python-musicpd", - download_url="http://pypi.python.org/pypi/python-musicpd/", - py_modules=["musicpd"], + url='http://kaliko.me/code/python-musicpd', + download_url='http://pypi.python.org/pypi/python-musicpd/', + py_modules=['musicpd'], classifiers=CLASSIFIERS, license=LICENSE, - keywords=["mpd"], - platforms=["Independant"], + keywords=['mpd', 'Music Player Daemon'], + platforms=['Independant'], + test_suite='test.py', )