propagated exception
[mp3tohtml.git] / setup.py
1 #!/usr/bin/python
2
3 from distutils.core import setup
4 setup(license="GPLv2",
5       name='mp3tohtml',
6       keywords="mp3 html freemusicarchive",
7       version='1.0',
8       url="http://wpitchoune.net/mp3tohtml",
9       author="Jean-Philippe Orsini",
10       author_email="jeanfi@gmail.com",
11       scripts=['mp3tohtml/mp3tohtml.py'],
12       packages=["mp3tohtml"],
13       package_data={'': ['header.tpl', 'footer.tpl']}
14 )