X-Git-Url: https://git.kaliko.me/?p=python-musicpd.git;a=blobdiff_plain;f=setup.py;h=06924ade4e6639c1098b5ccc441991199d97331d;hp=8ed1c023c82029002f498cea5b82a4c239725dd6;hb=0304a10fe76deb1dfcdb5672958877ff2b2e6212;hpb=bfd56e9bb04f1d02016c1b8c0406c01152550e31 diff --git a/setup.py b/setup.py index 8ed1c02..06924ad 100755 --- a/setup.py +++ b/setup.py @@ -1,4 +1,5 @@ #! /usr/bin/env python3 +# coding: utf-8 from setuptools import setup @@ -22,24 +23,6 @@ CLASSIFIERS = [ "Topic :: Software Development :: Libraries :: Python Modules", ] -LICENSE = """\ -Copyright (C) 2008-2010 J. Alexander Treuman -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 -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -python-musicpd is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public License -along with python-musicpd. If not, see .\ -""" - setup( name='python-musicpd', @@ -52,10 +35,9 @@ setup( download_url='http://pypi.python.org/pypi/python-musicpd/', py_modules=['musicpd'], classifiers=CLASSIFIERS, - license=LICENSE, + license='LGPLv3+', keywords=['mpd', 'Music Player Daemon'], platforms=['Independant'], - test_suite='test.py', )