* added a setup.py script

This commit is contained in:
Amr Hassan 2008-09-09 19:22:13 +00:00
parent 7d7b06d5d2
commit a369c6f0d1
3 changed files with 14 additions and 0 deletions

3
INSTALL Normal file
View file

@ -0,0 +1,3 @@
#!/bin/sh
exec python setup.py install

2
MANIFEST Normal file
View file

@ -0,0 +1,2 @@
pylast.py
setup.py

9
setup.py Normal file
View file

@ -0,0 +1,9 @@
from distutils.core import setup
setup(name='pylast',
version='0.2b8',
author='Amr Hassan',
author_email='amr.hassan@gmail.com',
url='http://code.google.com/p/pylast/',
py_modules= ("pylast",)
)