* fixed issue #13

* fixed proxy uage
* added: pylast.clear_cache() method
This commit is contained in:
Amr Hassan 2009-02-04 07:03:00 +00:00
parent ce0a46d036
commit c61b15b129
4 changed files with 18 additions and 1572 deletions

14
setup.py Executable file
View file

@ -0,0 +1,14 @@
#!/usr/bin/env python
from distutils.core import setup
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",)
)