From 9d2dcb79c828059c75e76d0feaf7978a376def4a Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Wed, 4 May 2016 14:21:37 +0300 Subject: Add setup.py --- setup.py | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..9d5c76a --- /dev/null +++ b/setup.py @@ -0,0 +1,32 @@ +#!/usr/bin/python +# Copyright (C) 2016 QvarnLabs Ab +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + + +from distutils.core import setup + +import ql_ikiwiki_publish + + +setup( + name='ql-ikiwiki-setup', + version=ql_ikiwiki_publish.__version__, + description='Blah', + author='QvarnLabs Ab', + author_email='info@qvarnlabs.com', + scripts=['ql-ikiwiki-setup'], + packages=['ql_ikiwiki_setup'], +) -- cgit v1.2.1