X-Git-Url: https://git.kaliko.me/?p=python-musicpd.git;a=blobdiff_plain;f=setup.py;h=286dafa8fbeb462c25bfd5bb1437547544e7960e;hp=fee2420bd2c64ceeb50f23e9d650e0204427ed28;hb=96d64b58738f66d3b65ed18e43d3f24134323f1b;hpb=ea4b21116e2b392760d162252fa3c21ef80066bf diff --git a/setup.py b/setup.py index fee2420..286dafa 100644 --- a/setup.py +++ b/setup.py @@ -1,54 +1,60 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 from distutils.core 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", "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", "Natural Language :: English", "Operating System :: OS Independent", - "Programming Language :: Python", + "Programming Language :: Python :: 3", "Topic :: Software Development :: Libraries :: Python Modules", ] LICENSE = """\ Copyright (C) 2008-2010 J. Alexander Treuman +Copyright (C) 2012-2014 Kaliko Jack -python-mpd is free software: you can redistribute it and/or modify +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-mpd is distributed in the hope that it will be useful, +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-mpd. If not, see .\ +along with python-musicpd. If not, see .\ """ setup( - name="python-mpd", - version="0.3.0", - description="Python MPD client library", - long_description=DESCRIPTION, - author="J. Alexander Treuman", - author_email="jat@spatialrift.net", - url="http://jatreuman.indefero.net/p/python-mpd/", - download_url="http://pypi.python.org/pypi/python-mpd/", - py_modules=["mpd"], + name='python-musicpd', + version=VERSION, + description=DESCRIPTION, + 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"], classifiers=CLASSIFIERS, - #license=LICENSE, + license=LICENSE, keywords=["mpd"], - #platforms=["Independant"], + platforms=["Independant"], )