* fixed: some unicode problems.
 * fix: a typo in the function name Exceptionable.clear_errors()
 * fixed: User.fetchPlaylist (#3)
 * api change: User.getPlaylistsIDs is now User.getPlaylistsData, and User.getPlaylistsIDs returns a list of IDs now.
This commit is contained in:
Amr Hassan 2008-10-16 13:14:36 +00:00
parent ea21ee0b7f
commit ae41e1a641
3 changed files with 26 additions and 11 deletions

View file

@ -1,10 +1,12 @@
from distutils.core import setup
setup(name='pylast',
version='0.2b10',
author='Amr Hassan',
long_description = 'A Python interface to the Last.fm API',
author_email='amr.hassan@gmail.com',
import pylast
setup(name = pylast.__name__,
version = pylast.__version__,
author = pylast.__author__,
long_description = pylast.__doc__,
author_email = pylast.__email__,
url='http://code.google.com/p/pylast/',
py_modules= ("pylast",)
)