setup
[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       packages=["mp3tohtml"],
12       package_data={'': ['header.tpl', 'footer.tpl']},
13       py_modules=['mp3tohtml.py']
14       )