setup
authorJean-Philippe Orsini <jeanfi@gmail.com>
Mon, 1 Feb 2016 09:18:27 +0000 (10:18 +0100)
committerJean-Philippe Orsini <jeanfi@gmail.com>
Mon, 1 Feb 2016 09:18:27 +0000 (10:18 +0100)
setup.py [new file with mode: 0755]

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']
+      )