From b58075de1b0ea25116c554a079e978ce28beb998 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Orsini Date: Mon, 1 Feb 2016 10:18:27 +0100 Subject: [PATCH] setup --- setup.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 setup.py diff --git a/setup.py b/setup.py new file mode 100755 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'] + ) -- 2.7.4