X-Git-Url: http://git.kaliko.me/?p=python-musicpd.git;a=blobdiff_plain;f=setup.py;h=afcbf23d382383f40a5ef8edbaacbf1b6283ff87;hp=18e00077babaa124e9ef20512e12d92b901e3540;hb=1fb65355de64ef044d0a7b3736a21bed6a6ae290;hpb=d28bd57ddc3465db4fcaa540fe7cb3de53f8be6b diff --git a/setup.py b/setup.py old mode 100644 new mode 100755 index 18e0007..afcbf23 --- 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 @@ -9,7 +9,7 @@ An MPD (Music Player Daemon) client library written in pure Python.\ """ -with open('README.rst') as file: +with open('README.rst', encoding='UTF-8') as file: LONG_DESCRIPTION = file.read() CLASSIFIERS = [ @@ -24,7 +24,7 @@ CLASSIFIERS = [ LICENSE = """\ Copyright (C) 2008-2010 J. Alexander Treuman -Copyright (C) 2012-2013 Kaliko Jack +Copyright (C) 2012-2018 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', )