11 lines
294 B
Python
11 lines
294 B
Python
from distutils.core import setup
|
|
|
|
setup(name='pylast',
|
|
version='0.2b9',
|
|
author='Amr Hassan',
|
|
long_description = 'Python bindings for the Last.fm API 2.0',
|
|
author_email='amr.hassan@gmail.com',
|
|
url='http://code.google.com/p/pylast/',
|
|
py_modules= ("pylast",)
|
|
)
|