summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2016-05-04 14:21:37 +0300
committerLars Wirzenius <liw@liw.fi>2016-05-04 14:21:37 +0300
commit9d2dcb79c828059c75e76d0feaf7978a376def4a (patch)
tree3dacad4da7f63edb7b0dc715205989d1a19fea8d
parent9a3e4888dbc403a393c82033c6c81db89c8560ef (diff)
downloadql-ikiwiki-publish-9d2dcb79c828059c75e76d0feaf7978a376def4a.tar.gz
Add setup.py
-rw-r--r--setup.py32
1 files changed, 32 insertions, 0 deletions
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'],
+)