X-Git-Url: http://git.kaliko.me/?p=python-musicpd.git;a=blobdiff_plain;f=setup.py;h=9b6a127b9679f6eb8162eab0eb02acac6869fa6d;hp=4e3185691b8603e777ed18193367e7d59a25d159;hb=e616985e3da118a4e2b14afe331446633e7e2254;hpb=129580789b889e62a473b5ebe4ffd3a3d3423848 diff --git a/setup.py b/setup.py old mode 100644 new mode 100755 index 4e31856..9b6a127 --- a/setup.py +++ b/setup.py @@ -1,12 +1,18 @@ #! /usr/bin/env python3 +# coding: utf-8 -from distutils.core import setup +from setuptools import setup +from musicpd import VERSION DESCRIPTION = """\ An MPD (Music Player Daemon) client library written in pure Python.\ """ + +with open('README.rst', encoding='UTF-8') as file: + LONG_DESCRIPTION = file.read() + CLASSIFIERS = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", @@ -17,39 +23,22 @@ CLASSIFIERS = [ "Topic :: Software Development :: Libraries :: Python Modules", ] -LICENSE = """\ -Copyright (C) 2008-2010 J. Alexander Treuman -Copyright (C) 2012-2013 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', - version='0.3.1', - description='Python MPD client library', - long_description=DESCRIPTION, + 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://jatreuman.indefero.net/p/python-mpd/", - download_url="http://pypi.python.org/pypi/python-musicpd/", - py_modules=["musicpd"], + url='https://kaliko.me/python-musicpd/', + download_url='https://pypi.org/project/python-musicpd/', + py_modules=['musicpd'], classifiers=CLASSIFIERS, - #license=LICENSE, - keywords=["mpd"], - #platforms=["Independant"], + license='LGPLv3+', + keywords=['mpd', 'Music Player Daemon'], + platforms=['Independant'], )