diff --git a/pylast/__init__.py b/pylast/__init__.py index 45d627b..172a537 100644 --- a/pylast/__init__.py +++ b/pylast/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # pylast - -# A Python interface to Last.fm (and other API compatible social networks) +# A Python interface to Last.fm and Libre.fm # # Copyright 2008-2010 Amr Hassan # Copyright 2013-2015 hugovk @@ -18,7 +18,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # -# http://code.google.com/p/pylast/ +# https://github.com/pylast/pylast import hashlib from xml.dom import minidom @@ -32,7 +32,7 @@ import warnings import re import six -__version__ = '1.1.0' +__version__ = '1.2.0' __author__ = 'Amr Hassan, hugovk' __copyright__ = "Copyright (C) 2008-2010 Amr Hassan, 2013-2015 hugovk" __license__ = "apache2" diff --git a/setup.py b/setup.py index 2173f52..8e80ef6 100755 --- a/setup.py +++ b/setup.py @@ -4,12 +4,11 @@ from setuptools import setup, find_packages setup( name="pylast", - version="1.1.0", + version="1.2.0", author="Amr Hassan ", install_requires=['six'], tests_require=['mock', 'pytest', 'coverage', 'pep8', 'pyyaml', 'pyflakes'], - description=("A Python interface to Last.fm " - "(and other API compatible social networks)"), + description=("A Python interface to Last.fm and Libre.fm"), author_email="amr.hassan@gmail.com", url="https://github.com/pylast/pylast", classifiers=[