diff --git a/pylast.py b/pylast.py index fa961ad..ce887c1 100644 --- a/pylast.py +++ b/pylast.py @@ -18,7 +18,7 @@ # # http://code.google.com/p/pylast/ -__version__ = '0.5' +__version__ = '0.6' __author__ = 'Amr Hassan' __copyright__ = "Copyright (C) 2008-2010 Amr Hassan" __license__ = "apache2" diff --git a/setup.py b/setup.py index 50654e0..7bde338 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from distutils.core import setup import os def get_build(): path = "./.build" - + if os.path.exists(path): fp = open(path, "r") build = eval(fp.read()) @@ -14,19 +14,19 @@ def get_build(): fp.close() else: build = 1 - + fp = open(path, "w") fp.write(str(build)) fp.close() - + return str(build) setup(name = "pylast", - version = "0.1+0.5." + get_build(), + version = "0.6." + get_build(), author = "Amr Hassan ", description = "A Python interface to Last.fm (and other API compatible social networks)", author_email = "amr.hassan@gmail.com", - url = "https://github.com/Elizacat/", + url = "https://github.com/inversion/", py_modules = ("pylast",), license = "Apache2" )