setup
[mp3tohtml.git] / setup.py
diff --git a/setup.py b/setup.py
new file mode 100755 (executable)
index 0000000..589c632
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,14 @@
+#!/usr/bin/python
+
+from distutils.core import setup
+setup(license="GPLv2",
+    name='mp3tohtml',
+      keywords="mp3 html freemusicarchive",
+      version='1.0',
+      url="http://wpitchoune.net/mp3tohtml",
+      author="Jean-Philippe Orsini",
+      author_email="jeanfi@gmail.com",
+      packages=["mp3tohtml"],
+      package_data={'': ['header.tpl', 'footer.tpl']},
+      py_modules=['mp3tohtml.py']
+      )