]> kaliko git repositories - python-musicpd.git/blobdiff - setup.py
Add test for two worded commands (ie. "tagtypes clear")
[python-musicpd.git] / setup.py
index afcbf23d382383f40a5ef8edbaacbf1b6283ff87..9b6a127b9679f6eb8162eab0eb02acac6869fa6d 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,5 @@
 #! /usr/bin/env python3
+# coding: utf-8
 
 from setuptools import setup
 
@@ -22,40 +23,22 @@ CLASSIFIERS = [
     "Topic :: Software Development :: Libraries :: Python Modules",
 ]
 
-LICENSE = """\
-Copyright (C) 2008-2010  J. Alexander Treuman <jat@spatialrift.net>
-Copyright (C) 2012-2018  Kaliko Jack <kaliko@azylum.org>
-
-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 <http://www.gnu.org/licenses/>.\
-"""
-
 
 setup(
     name='python-musicpd',
     version=VERSION,
     description=DESCRIPTION,
     long_description=LONG_DESCRIPTION,
+    long_description_content_type='text/x-rst',
     author='Kaliko Jack',
     author_email='kaliko@azylum.org',
-    url='http://kaliko.me/code/python-musicpd',
-    download_url='http://pypi.python.org/pypi/python-musicpd/',
+    url='https://kaliko.me/python-musicpd/',
+    download_url='https://pypi.org/project/python-musicpd/',
     py_modules=['musicpd'],
     classifiers=CLASSIFIERS,
-    license=LICENSE,
+    license='LGPLv3+',
     keywords=['mpd', 'Music Player Daemon'],
     platforms=['Independant'],
-    test_suite='test.py',
 )