Allow getting venue info through Event.get_venue() as a workaround until

the Venue.getInfo API call is added to Last.fm. Changed version to 0.6
in setup.py and pylast.py to reflect update.
This commit is contained in:
Andrew Moss 2013-12-26 23:11:23 +00:00
parent 4621a1a6e4
commit c8216a139e
8 changed files with 133 additions and 105 deletions

9
setup.py Normal file → Executable file
View file

@ -1,9 +1,6 @@
#!/usr/bin/env python
try:
from setuptools import setup
except:
from distutils.core import setup
from distutils.core import setup
import os
def get_build():
@ -25,11 +22,11 @@ def get_build():
return str(build)
setup(name = "pylast",
version = "0.5." + get_build(),
version = "0.1+0.5." + get_build(),
author = "Amr Hassan <amr.hassan@gmail.com>",
description = "A Python interface to Last.fm (and other API compatible social networks)",
author_email = "amr.hassan@gmail.com",
url = "http://code.google.com/p/pylast/",
url = "https://github.com/Elizacat/",
py_modules = ("pylast",),
license = "Apache2"
)